Re: [sqlite] Concurrence in DB - again

2004-03-07 Thread Thiago Mello
Yes, in my callback() functions I have some sqlite_exec() functions. How I can avoid this? Thanks, Thiago Em Dom, 2004-03-07 às 15:10, Peter escreveu: > Thiago Mello wrote: > > about the sqlite_compile(), Im using simple call back function. > > Are you calling any other sq

[sqlite] Concurrence in DB

2004-02-24 Thread Thiago Mello
, -- Thiago Mello <[EMAIL PROTECTED]> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[sqlite] database in memory

2003-11-26 Thread Thiago Mello
Hi all, I want to use in my application a DB in memory, I know that to use this, when I open my DB I have to do: sqlite_open(":memory", 0, ); To open a DB that is not in memory, in the shell I do: SQLite/bin/sqlite BD But if I whant to this in a ":memory" DB, how can I proceed? Thanks in

[sqlite] database table is locked

2003-11-06 Thread Thiago Mello
Hi, Im doing a SELECT sql query, and in the callback function of this sql query I do a UPDATE, so when I do this update I get database table is locked. How I cant do the UPDATE in the second sqlite_exec() function?! Thanks, Thiago Mello