It works!!!!

You're great! Thanks a lot 

-----Mensaje original-----
De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Enviado el: dimecres, 1 / març / 2006 16:03
Para: sqlite-users@sqlite.org; [EMAIL PROTECTED]
Asunto: Re: [sqlite] Extrange files

=?iso-8859-1?Q?Josep_Llu=EDs_Vaquer?= <[EMAIL PROTECTED]> wrote:
> I'm running DOS, Sqlite version 3.2.8. Attached example files
> 

The mailing list handler automatically strips attachments so
they did not get through.

The files you are seeing are probably temporary databases
that SQLite creates to support its internal processing.
Such temporary databases are automatically deleted on unix
and windows.  But I do not think that DOS has the ability
to automatically delete a file when it is closed, so the
files remain on disk after SQLite has finished with them.

To fix this, you might consider compiling SQLite so that
it stores temporary databases in memory rather than on disk.
Do so with this compile-time option:

    -DTEMP_STORE=2

You can do this at runtime using a pragma:

    PRAGMA temp_store=MEMORY;

--
D. Richard Hipp   <[EMAIL PROTECTED]>


--
Este mensaje ha sido analizado mediante ABServer Antivirus System
http://www.abserver.es/antivirus/panel.htm


--
Este mensaje ha sido analizado mediante ABServer Antivirus System
http://www.abserver.es/antivirus/panel.htm

Reply via email to