Skip to content

Latest commit

History

6 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

SQLite3

Native (non-ODBC) SQLite3 database binding for Dolphin Smalltalk.

Based on Pharo-SQLite3 - refer here for further info and documentation.

Getting Started

GitHubPackageManagerinstall:'rko281/SQLite3'.
  • Example usage:
"Inspect it"
sqlite :=SQLite3Connection memory.
sqlite open; execute:'create table test_table(id integer,name varchar(64))'.
insertStmt := sqlite prepare:'insert into test_table(id,name) values(?,?)'.
#(#(1 'Adele')#(2 'Alan')) do: [ :values | insertStmt execute: values].
(sqlite execute:'select * from test_table') asArray.

About

Native (non-ODBC) SQLite3 database binding for Dolphin Smalltalk

Topics

Resources

Stars

1 star

Watchers

2 watching

Forks

Releases

Packages

Contributors

Languages