let Grid Servers specify a connect string in their configuration.

This commit is contained in:
Sean Dague
2008-05-28 17:59:46 +00:00
parent a8b8bacf28
commit 89c164fbc1
12 changed files with 69 additions and 36 deletions

View File

@@ -48,9 +48,9 @@ namespace OpenSim.Data.SQLite
/// <summary>
/// Initialises the Grid Interface
/// </summary>
override public void Initialise()
override public void Initialise(string connect)
{
database = new SQLiteManager("localhost", "db", "user", "password", "false");
database = new SQLiteManager(connect);
}
/// <summary>