aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite
diff options
context:
space:
mode:
authorDavid Walter Seikel2016-11-04 00:46:34 +1000
committerDavid Walter Seikel2016-11-04 00:46:34 +1000
commit58783a5216b81863988110174229a65ceb315e1e (patch)
tree74d08dcd7e127f288cd7a8026c776385a738d484 /OpenSim/Data/SQLite
parentEven OpenSim removed the silly IAR avatar presence check. Purge it with fire. (diff)
downloadopensim-SC_OLD-58783a5216b81863988110174229a65ceb315e1e.zip
opensim-SC_OLD-58783a5216b81863988110174229a65ceb315e1e.tar.gz
opensim-SC_OLD-58783a5216b81863988110174229a65ceb315e1e.tar.bz2
opensim-SC_OLD-58783a5216b81863988110174229a65ceb315e1e.tar.xz
Attempt to move everything writable, and the configs, out of the bin directory.
Log configs are still in the bin directory.
Diffstat (limited to 'OpenSim/Data/SQLite')
-rw-r--r--OpenSim/Data/SQLite/SQLiteAssetData.cs4
-rw-r--r--OpenSim/Data/SQLite/SQLiteInventoryStore.cs2
2 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteAssetData.cs b/OpenSim/Data/SQLite/SQLiteAssetData.cs
index f0dda64..30b26c4 100644
--- a/OpenSim/Data/SQLite/SQLiteAssetData.cs
+++ b/OpenSim/Data/SQLite/SQLiteAssetData.cs
@@ -86,7 +86,7 @@ namespace OpenSim.Data.SQLite
86 86
87 if (dbconnect == string.Empty) 87 if (dbconnect == string.Empty)
88 { 88 {
89 dbconnect = "URI=file:Asset.db,version=3"; 89 dbconnect = "URI=file:../db/Asset.db,version=3";
90 } 90 }
91 m_conn = new SqliteConnection(dbconnect); 91 m_conn = new SqliteConnection(dbconnect);
92 m_conn.Open(); 92 m_conn.Open();
@@ -358,7 +358,7 @@ namespace OpenSim.Data.SQLite
358 /// </summary> 358 /// </summary>
359 override public void Initialise() 359 override public void Initialise()
360 { 360 {
361 Initialise("URI=file:Asset.db,version=3"); 361 Initialise("URI=file:../db/Asset.db,version=3");
362 } 362 }
363 363
364 /// <summary> 364 /// <summary>
diff --git a/OpenSim/Data/SQLite/SQLiteInventoryStore.cs b/OpenSim/Data/SQLite/SQLiteInventoryStore.cs
index 7d493ca..7caf347 100644
--- a/OpenSim/Data/SQLite/SQLiteInventoryStore.cs
+++ b/OpenSim/Data/SQLite/SQLiteInventoryStore.cs
@@ -82,7 +82,7 @@ namespace OpenSim.Data.SQLite
82 82
83 if (dbconnect == string.Empty) 83 if (dbconnect == string.Empty)
84 { 84 {
85 dbconnect = "URI=file:inventoryStore.db,version=3"; 85 dbconnect = "URI=file:../db/inventoryStore.db,version=3";
86 } 86 }
87 m_log.Info("[INVENTORY DB]: Sqlite - connecting: " + dbconnect); 87 m_log.Info("[INVENTORY DB]: Sqlite - connecting: " + dbconnect);
88 conn = new SqliteConnection(dbconnect); 88 conn = new SqliteConnection(dbconnect);