Re: [sqlite] database in memory

2003-11-26 Thread Kurt Welgehausen
Read carefully, or use cut-and-paste. {;) - 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, &z); 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 ad