Kevin Stewart <[EMAIL PROTECTED]> wrote: > I am still curious. Generally speaking, can one access > the database inside the callback from select via sqlite_exec()? >
Yes. SQLite is reentrant. SQLite uses this reentrancy internally. There are occasions when you are running an SQL statement that SQLite while invoke sqlite3_exec() as part of the processing for that SQL statement. This happens, for example, when you are running an ALTER TABLE or a CREATE TABLE command. -- D. Richard Hipp <[EMAIL PROTECTED]> ----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------