--- David Crawshaw <[EMAIL PROTECTED]> wrote: > On 10/06/07, Manuel Sandoval wrote: > > Well, I downloaded sqljdbc and have just one question: why does it create > > lots of temp files (etilqs_xxxxx) in my root folder? is there any way to > > avoid it? > > This is part of the standard operation of SQLite, nothing to do with > the Java interface. I believe for pure memory databases SQLite creates > no temp files. Any other answer will have to come from > http://sqlite.org
Not exactly true. Because NestedVM SQLite is compiled with -DOS_UNIX=1 it is trying to use POSIX filesystem symantics on a Windows filesystem and it is unable to delete these temp files. SQLite has a completely different set of code for Windows filesystem routines which Java is not able to use. This patch addresses the problem: http://groups.google.com/group/nestedvm/msg/cb5e2823c37329ac Original discussion: http://groups.google.com/group/nestedvm/browse_thread/thread/220d2b30b21cbb13/cb5e2823c37329ac?#cb5e2823c37329ac ____________________________________________________________________________________ Sick sense of humor? Visit Yahoo! TV's Comedy with an Edge to see what's on, when. http://tv.yahoo.com/collections/222 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "SQLiteJDBC" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sqlitejdbc?hl=en -~----------~----~----~----~------~----~------~--~---
