I want to use the Write-Ahead Logging feature of SQLite in a j2se program. Please help me with a java implemention example.
相关问题
- NOT DISTINCT query in mySQL
- SQL/SQL-LITE - Counting records after filtering
- Flush single app django 1.9
- keeping one connection to DB or opening closing pe
- What SQLite NuGet package do I need
You need to execute a Sqlite specific command (just like you'd execute other SQL queries):
For the specifics of using this pragma, please read http://www.sqlite.org/pragma.html#pragma_journal_mode
Here are some highlights: