Re: [sqlite] Calling sqlite3_exec from within another sqlite3_exec callback?

2007-06-21 Thread drh
Stefan Kuhr <[EMAIL PROTECTED]> wrote: > Hello everyone, > > this might be a real dumb question, but I am relatively new to database > programming and in particular to sqlite, so anyway, here it goes: > > Suppose I have a call to sqlite3_exec in my code and it calls into the > callback function

Re: [sqlite] Calling sqlite3_exec from within another sqlite3_exec callback?

2007-06-21 Thread Joe Wilson
> Suppose I have a call to sqlite3_exec in my code and it calls into the > callback function passed as the third parameter to this sqlite3_exec call. > Is it possible to create another sqlite3 object with a sqlite3_open to the > same database file from within this callback? Or in other words: Can