I am using Zeoslib to create in-memory databases with SQLite, and I need to the save the database onto disk when the program closes or dump it to a file regularly.
As the SQLite3 program cannot handle in memory databases, is there a way to get SQLite to export the output of a SELECT
query as INSERT
statements?
PS. sqlite3
can dump an in memory database to disk as indicated in this thread, but the in-memory database is created by a different application, which is why I can't see how to get the example to work.