Re: [sqlite] Is it possible to call sqlite_exec() from within the callback made inside sqlite_exec()

2006-09-15 Thread Kevin Stewart
tach db2 insert into db2.destinationTable select * from db1.sourceTable done On 9/15/06, Kevin Stewart <[EMAIL PROTECTED]> wrote: I need to move some records from one database (and table) to another. The tables are identical. My idea was to 'select' all records that match my sear

[sqlite] Is it possible to call sqlite_exec() from within the callback made inside sqlite_exec()

2006-09-15 Thread Kevin Stewart
I need to move some records from one database (and table) to another. The tables are identical. My idea was to 'select' all records that match my search criteria and in the callback that is called from sqlite_exec() I can add them to the other table in the other database. This way I don't need