diff options
Diffstat (limited to 'OpenSim/Data/SQLite')
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteAssetData.cs | 3 | ||||
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteInventoryStore.cs | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteAssetData.cs b/OpenSim/Data/SQLite/SQLiteAssetData.cs index f3a4bd1..34329bb 100644 --- a/OpenSim/Data/SQLite/SQLiteAssetData.cs +++ b/OpenSim/Data/SQLite/SQLiteAssetData.cs | |||
@@ -58,7 +58,8 @@ namespace OpenSim.Data.SQLite | |||
58 | 58 | ||
59 | override public void Initialise(string dbconnect) | 59 | override public void Initialise(string dbconnect) |
60 | { | 60 | { |
61 | if (dbconnect == string.Empty) { | 61 | if (dbconnect == string.Empty) |
62 | { | ||
62 | dbconnect = "URI=file:AssetStorage.db,version=3"; | 63 | dbconnect = "URI=file:AssetStorage.db,version=3"; |
63 | } | 64 | } |
64 | m_conn = new SqliteConnection(dbconnect); | 65 | m_conn = new SqliteConnection(dbconnect); |
diff --git a/OpenSim/Data/SQLite/SQLiteInventoryStore.cs b/OpenSim/Data/SQLite/SQLiteInventoryStore.cs index 40978da..1ab971c 100644 --- a/OpenSim/Data/SQLite/SQLiteInventoryStore.cs +++ b/OpenSim/Data/SQLite/SQLiteInventoryStore.cs | |||
@@ -52,7 +52,8 @@ namespace OpenSim.Data.SQLite | |||
52 | /// </summary> | 52 | /// </summary> |
53 | public void Initialise(string dbconnect) | 53 | public void Initialise(string dbconnect) |
54 | { | 54 | { |
55 | if (dbconnect == string.Empty) { | 55 | if (dbconnect == string.Empty) |
56 | { | ||
56 | dbconnect = "URI=file:inventoryStore.db,version=3"; | 57 | dbconnect = "URI=file:inventoryStore.db,version=3"; |
57 | } | 58 | } |
58 | m_log.Info("[INVENTORY DB]: Sqlite - connecting: " + dbconnect); | 59 | m_log.Info("[INVENTORY DB]: Sqlite - connecting: " + dbconnect); |