I am porgramming a c# program with sqlite database for windows mobile 6.5 devices. Here is how I create a database:
SQLiteConnection cn = new SQLiteConnection("Data source =" + dbPath + ";PRAGMA journal_mode=WAL;");
My question is how can I know whether the SQLite database is working in WAL mode?