I found another workaround on win32:

>----------------------------------
File dbFile = new File(System.getProperty("java.io.tmpdir"),
"test.db");

String dbFilename = dbFile.getAbsolutePath().replaceAll("\\\\", "/");
Connection connection = DriverManager.getConnection("jdbc:sqlite:" +
dbFilename);
>----------------------------------

This works for me without any "out of memory"-error

Jens


--~--~---------~--~----~------------~-------~--~----~
Mailing List: http://groups.google.com/group/sqlitejdbc?hl=en
To unsubscribe, send email to [EMAIL PROTECTED]
-~----------~----~----~----~------~----~------~--~---

Reply via email to