On 4 Jan 2010, at 11:35am, sasikuma...@tcs.com wrote:

> I'm using SQLite DB version 3.6.12. I recently read about the feature of 
> In-Memory Database and tried to implement it. I was able to create a new 
> DB connection in memory, able to create a table and insert some set of 
> records into the memory DB. 
> 
> How should I now transfer those records into the real table in the real 
> DB, someone kindly assist and guide me.

The database in memory /is/ the real database.  That's where you wanted your 
data, and that's where it is.  You can write, change and read records in those 
tables.  If you want your data saved in a file on disk you have to do separate 
CREATE and INSERT commands to make that happen.

Simon.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to