=?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]>