10 October 2006
Applicable to SQLite3 databases only.
Arguments:
Call sqlconnect( 'c1', , , 'test.db' ) Call sqlcommand( 't1', 'create table table1 (pkid1 integer primary key, col1 string )' Call sqlcommand( 't1', 'create table table2 (pkid2 integer primary key, fkid1 integer, col1 string )' Call sqlcommand( 'i1', 'insert into table1 values( null, "string value") )' id = litegetinsertid() Call sqlcommand( 'i2', 'insert into table2 values( null,' id ', "string value")' ) Call sqldisconnect( 'c1' )