On Wed, Sep 10, 2014 at 4:50 AM, Dileep <[email protected]> wrote: > Hi, > > What is the use etilqs-files. Is there any way I can disable my application > creating these temp files in the native temp directory ? Is there any issue > on disabling these temp files also ? > >
See http://www.sqlite.org/tempfiles.html The etilqs files are used (on Windows only) to store TEMP tables, manifested views, automatic indices, and as temporary storage for sorting operations and for VACUUM. Compile with -DSQLITE_TEMP_STORE=3 to disable them. Note, however, that when the etilqs files are disabled, the equivalent information is held in RAM instead. -- D. Richard Hipp [email protected] _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

