Assembly Info

This commit is contained in:
ClemensFischer 2024-02-03 21:12:05 +01:00
parent 1807c2fa56
commit 24850446e7
4 changed files with 23 additions and 3 deletions

View file

@ -32,7 +32,7 @@ namespace MapControl.Caching
path = Path.Combine(path, "TileCache.sqlite");
}
var connection = new SQLiteConnection("Data Source=" + Path.GetFullPath(path));
connection = new SQLiteConnection("Data Source=" + Path.GetFullPath(path));
connection.Open();
using (var command = new SQLiteCommand("create table if not exists items (key text primary key, expiration integer, buffer blob)", connection))