Update SQLiteCache.cs

This commit is contained in:
ClemensFischer 2025-02-23 20:49:50 +01:00
parent 5f66d0d5e1
commit 5550556b9f

View file

@ -41,7 +41,7 @@ namespace MapControl.Caching
connection = new SQLiteConnection("Data Source=" + Path.GetFullPath(path));
connection.Open();
using (var command = new SQLiteCommand("PRAGMA journal_mode=WAL", connection))
using (var command = new SQLiteCommand("pragma journal_mode=wal", connection))
{
command.ExecuteNonQuery();
}