aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Data/SQLite/SQLiteAssetData.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteAssetData.cs b/OpenSim/Data/SQLite/SQLiteAssetData.cs
index 41a75a3..ae60d24 100644
--- a/OpenSim/Data/SQLite/SQLiteAssetData.cs
+++ b/OpenSim/Data/SQLite/SQLiteAssetData.cs
@@ -73,7 +73,7 @@ namespace OpenSim.Data.SQLite
73 { 73 {
74 if (dbconnect == string.Empty) 74 if (dbconnect == string.Empty)
75 { 75 {
76 dbconnect = "URI=file:AssetStorage.db,version=3"; 76 dbconnect = "URI=file:Asset.db,version=3";
77 } 77 }
78 m_conn = new SqliteConnection(dbconnect); 78 m_conn = new SqliteConnection(dbconnect);
79 m_conn.Open(); 79 m_conn.Open();
@@ -334,7 +334,7 @@ namespace OpenSim.Data.SQLite
334 /// </summary> 334 /// </summary>
335 override public void Initialise() 335 override public void Initialise()
336 { 336 {
337 Initialise("URI=file:AssetStorage.db,version=3"); 337 Initialise("URI=file:Asset.db,version=3");
338 } 338 }
339 339
340 /// <summary> 340 /// <summary>