* Change default sqlite asset db back to Asset.db instead of AssetStorage.db

* This inconsistency has actually existed for some time but only the recent change brought it to light
* In the past, the default in ConfigurationLoader took precedence over the one in SQLiteAssetData
0.6.6-post-fixes
Justin Clarke Casey 2009-05-15 18:50:38 +00:00
parent 5a97979bd7
commit 3791386d4d
1 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ namespace OpenSim.Data.SQLite
{ {
if (dbconnect == string.Empty) if (dbconnect == string.Empty)
{ {
dbconnect = "URI=file:AssetStorage.db,version=3"; dbconnect = "URI=file:Asset.db,version=3";
} }
m_conn = new SqliteConnection(dbconnect); m_conn = new SqliteConnection(dbconnect);
m_conn.Open(); m_conn.Open();
@ -334,7 +334,7 @@ namespace OpenSim.Data.SQLite
/// </summary> /// </summary>
override public void Initialise() override public void Initialise()
{ {
Initialise("URI=file:AssetStorage.db,version=3"); Initialise("URI=file:Asset.db,version=3");
} }
/// <summary> /// <summary>