* Make default inventory grid server db mysql rather than sqlite

* This is to match all the other grid servers
0.6.0-stable
Justin Clarke Casey 2008-07-04 17:05:41 +00:00
parent c0f5f212c1
commit 35bd6e8760
1 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ namespace OpenSim.Framework
configMember.addConfigurationOption("user_recv_key", ConfigurationOption.ConfigurationTypes.TYPE_STRING,
"Key to expect from user server", "null", false);
configMember.addConfigurationOption("database_provider", ConfigurationOption.ConfigurationTypes.TYPE_STRING,
"DLL for database provider", "OpenSim.Data.SQLite.dll", false);
"DLL for database provider", "OpenSim.Data.MySQL.dll", false);
configMember.addConfigurationOption("database_connect", ConfigurationOption.ConfigurationTypes.TYPE_STRING,
"Database Connect String", "", false);
configMember.addConfigurationOption("http_port", ConfigurationOption.ConfigurationTypes.TYPE_UINT32,
@ -103,4 +103,4 @@ namespace OpenSim.Framework
return true;
}
}
}
}