marcglennjamon wrote:
Hello guys,

     Is there an option in SQLite to make the database file reside in the
memory during sql transactions for faster access? I am using the C# language under Mono.

Thanks in advance,
Marc Glenn
Yes - use ":memory:" (without the double quotes) as the database name when opening it. Be aware, though, that all tables and their contents will disappear once you close the database connection.

HTH,
Mihai Limbasan
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to