Re: [sqlite] set journal off working witth SQLiteConfig?

2013-03-14 Thread Richard Hipp
On Wed, Mar 13, 2013 at 1:29 PM, Doug Crites wrote: > > Hello, > > I am using the sqlite-jdbc-3.7.8-20111025.014814-1.jar , trying to set the > journaling off on my 'main' only opened db. > > SQLiteConfig config = new SQLiteConfig(); >

[sqlite] set journal off working witth SQLiteConfig?

2013-03-14 Thread Doug Crites
Hello, I am using the sqlite-jdbc-3.7.8-20111025.014814-1.jar , trying to set the journaling off on my 'main' only opened db. SQLiteConfig config = new SQLiteConfig(); config.setJournalMode(SQLiteConfig.JournalMode.OFF); writeLog("Timestamp properties");