Journal file not available

Hi All,

While I am able to test SQLCipher succesfully, one thing I noticed is unlike normal Sqlite DB which has associated journal file, DB created with SQLCipher doesnt has one. Is this expected or am I missing. This is just to make sure that my excerise is done 100% correctly. Tested on Emulator with Nexus5 config.

The default journal mode is DELETE, where the journal file is deleted upon conclusion of each transaction. You can change this by issuing a PRAGMA journal_mode=…; command based on the needs of your application.