Artifact 752af96a65d4ccfeaf2c35cee35c31540326af0a:
- File sqlite/example.txt — part of check-in [1897e82ad3] at 2012-12-24 08:16:30 on branch trunk — Add sqlite addin (user: Magister size: 440) [more...]
var obj = addins.byUniqueName("sqlite").object; db = obj.OpenDatabase("d:\\Misha\\Projects\\Lazarus\\Snegopat\\sqlite\\test.sqlite") res = obj.ExecSQL(db, "CREATE TABLE test(id INTEGER PRIMARY KEY ASC, txt)") message(res) res = obj.ExecSQL(db, "INSERT INTO test(txt) values ('Row 1'),('Row 2')") message(res) res = obj.ExecSQL(db, "SELECT * FROM test") obj.ExecSQL(db, "DROP TABLE test") obj.CloseDatabase(db) res.()