in reply to Re: SQLite databasefile in main memory!
in thread SQLite database (or any) file in main memory!

Cool! But that is not using a database (file) that already exists (what I could find), but using memory from scratch! How to actually "move" the file there? How about any file?
  • Comment on Re^2: SQLite databasefile in main memory!

Replies are listed 'Best First'.
Re^3: SQLite databasefile in main memory!
by Anonymous Monk on Oct 06, 2005 at 10:35 UTC
    ???
    open file
    open memory
    copy from file to memory
    close file
    1+1=2
      Err, and exactly how do I do that? File is binary, and the sql memory is for queries...
      Dumping the binary database could be possible though... Extract and do "INSERT" queries in the memory one...