On Sat, Mar 2, 2013 at 3:30 PM, Rob Turpin <[email protected]> wrote:
> So I'm assuming saving in memory databases isn't an option with sqlite4. > Not in a single step at this time. You could, I suppose, implement the equivalent of the ".dump" command from the shell. The underlying data storage in SQLite4 is a simple key/value pair database with blobs for both key and value. You could probably implement a command that would very efficiently copy all key/values from one database into another, in key order. -- D. Richard Hipp [email protected] _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

