Using SQLite With Tcl - Getting Started |
Page 9 of 41 [prev] [next] |
load ./tclsqlite.so Sqlite3 sqlite3 db test.db db eval {CREATE TABLE t1(a,b,c)} db eval {INSERT INTO t1 VALUES(1,2,3)} db eval {INSERT INTO t1 VALUES('hello',NULL,'world')} db close