Re: [sqlite] ODBC Driver

2004-12-22 Thread Oliver Bienert
Dan Keeley wrote:
Hi,
I've finally got round to building sqlite.  Now i'm after the odbc 
driver for it.

Only thing is I can't seem to find the page on the sqlite website that 
lists other programs, such as an odbc driver for use with sqlite?

Is there a recommended odbc driver to use?
You do not need an ODBC Driver in order to use a sqlite database. You 
can directly talk to database via API.

Regards Oliver


[sqlite] Writing an in-memory database to file

2004-11-02 Thread Oliver Bienert
Hello all,
I wonder if there is a possibility to save (dump) an in-memory database 
to file (and vice versa, loading from file) in a fast way? (Without 
having to create a new database and copying records by select and inserts)

Oliver