diff --git a/Caches/SQLiteCache/SQLiteCache.cs b/Caches/SQLiteCache/SQLiteCache.cs index 19e6c888..dd0a37f6 100644 --- a/Caches/SQLiteCache/SQLiteCache.cs +++ b/Caches/SQLiteCache/SQLiteCache.cs @@ -37,7 +37,7 @@ namespace MapControl.Caching path = Path.Combine(path, "TileCache.sqlite"); } - connection = new SQLiteConnection("Data Source=" + Path.GetFullPath(path)); + connection = new SQLiteConnection("Data Source=" + path); connection.Open(); using (var command = new SQLiteCommand("pragma journal_mode=wal", connection))