Hi,
I need to apply on my sqlite db using jdbc:
PRAGMA synchronous = OFF;
But after
Connection database =
DriverManager.getConnection("jdbc:sqlite:test.db");
if I try to execute the statement I get an error because I can't do
this operation when the transaction is already opened.
I have read another similar thread, but I can't find the solution to
this problem.
Using c++ I can do sqlite3_open and then I can apply the pragma
without error.
How can I do that using jdbc?
Thanks in advanced.
Lukas
--~--~---------~--~----~------------~-------~--~----~
Mailing List: http://groups.google.com/group/sqlitejdbc?hl=en
To unsubscribe, send email to [EMAIL PROTECTED]
-~----------~----~----~----~------~----~------~--~---