Re: [sqlite] Periodical dump of in-memory database into a disk file

2008-07-18 Thread X Wang
ng "PRAGMA synchronous = OFF;" after you open your connection. Cheers, Shawn Wilsher Mozilla Developer On Thu, Jul 10, 2008 at 3:04 PM, X Wang <[EMAIL PROTECTED]> wrote: > Hi, I have a sqlite in-memory databse that I want to periodically dump to a disk file (so I can look into its

[sqlite] Periodical dump of in-memory database into a disk file

2008-07-10 Thread X Wang
Hi, I have a sqlite in-memory databse that I want to periodically dump to a disk file (so I can look into its contents at runtime). Currently I "ATTACH" an extern file. Periodically I export everything from in-memory databse into the attached extern file and do a final COMMIT. However, this