in reply to Transfer a in-memory SQLite database to disk

This node falls below the community's threshold of quality. You may see it by logging in.
  • Comment on Re: Transfer a in-memory SQLite database to disk

Replies are listed 'Best First'.
Re^2: Transfer a in-memory SQLite database to disk
by Anonymous Monk on Jul 03, 2012 at 10:53 UTC

    WTF? If you're wanting to put the database on disk, don't make an in-memory database! What are you hoping to gain by doing things this way?

    Please turn volume down, mmkay.

    Keeping database in RAM means faster queries -- it might matter in OPs case it might not, but that is the standard reason

Re^2: Transfer a in-memory SQLite database to disk
by saumitra121 (Novice) on Jul 03, 2012 at 12:54 UTC
    Please don't bother about replying to a question if you don't have any idea about it. Go and search the advantages of using a in-memory sqlite db and then writing it to disk at last. This method when used with transactions give the fastest inserts.