[sqlite] Cloning a database to memory

2010-02-10 Thread Phil Hibbs
Is there an easy way of opening a SQLite database and cloning it to an in-memory database? Cloning a database in a file is easy, you just copy the file. It would be nice if I could just copy a file into memory just as easily. Phil Hibbs. -- Don't you just hate self-referential sigs?

Re: [sqlite] Cloning a database to memory

2010-02-10 Thread Igor Tandetnik
Phil Hibbs sna...@gmail.com wrote: Is there an easy way of opening a SQLite database and cloning it to an in-memory database? http://www.sqlite.org/backup.html Igor Tandetnik ___ sqlite-users mailing list sqlite-users@sqlite.org

Re: [sqlite] Cloning a database to memory

2010-02-10 Thread Phil Hibbs
http://www.sqlite.org/backup.html Awesome, that means an application could use SQLite both for its save file storage mechanism, and for manipulating its data in memory while it is running, dumping it back out to disk when it's finished. Thanks. Phil Hibbs. -- Don't you just hate