On Thu, Oct 3, 2013 at 12:36 PM, Kf Lee <[email protected]> wrote: > Are there > facilities to open a hard disk > database and keep all in memory, operate the memory db using normal > sqlite statements, > and later save it back to hard disk? That sound like a perfect solution. >
Use the backup API (http://www.sqlite.org/backup.html) to transfer content from disk to memory at startup, then back from memory to disk at shutdown. -- D. Richard Hipp [email protected] _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

