Skip to content

rko281/SQLite3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

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

GitHubPackageManager install: '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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors