in theory, let you pass the mysql connection string into the

mysql manager class.  This could use some testing of inventory
and asset services.  Once this is prooved out, I'll do it for
mssql as well.
This commit is contained in:
Sean Dague
2008-04-24 15:23:49 +00:00
parent 5c660ea0c5
commit c6f6218f60
2 changed files with 21 additions and 3 deletions

View File

@@ -174,7 +174,13 @@ namespace OpenSim.Data.MySQL
{
// TODO: This will let you pass in the connect string in
// the config, though someone will need to write that.
Initialise();
if (connect == String.Empty) {
// This is old seperate config file
Initialise();
} else {
_dbConnection = new MySQLManager(connect);
TestTables();
}
}
override public void Initialise()