On Wed, 28 May 2008 13:44:51 +1930, you wrote:

>My data Base will run on Linux, Is it possible that?

It works the same on all platforms.

Igor Tandetnik already pointed out:
If you use ":memory:" as a file name in the sqlite3_open()
call SQLite creates an in-memory database not backed by disk
storage.

The same happens in the SQLite command line tool if you do
not use a database file name as a commandline parameter.
In-memory databases created in this way disappear completely
after sqlite3_close(), or after exit program, or after the
.quit command in the command line tool.
-- 
  (  Kees Nuyt
  )
c[_]
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to