aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLAssetData.cs
diff options
context:
space:
mode:
authorSean Dague2008-04-24 15:23:49 +0000
committerSean Dague2008-04-24 15:23:49 +0000
commitc6f6218f60db023fb4c124039fd9551bc4754b13 (patch)
tree734ebdae66f0402c6eaa5ce39f7535814d59adc4 /OpenSim/Data/MySQL/MySQLAssetData.cs
parent* Patch from Melanie. Mantis: 1040. Thanks Melanie! (diff)
downloadopensim-SC_OLD-c6f6218f60db023fb4c124039fd9551bc4754b13.zip
opensim-SC_OLD-c6f6218f60db023fb4c124039fd9551bc4754b13.tar.gz
opensim-SC_OLD-c6f6218f60db023fb4c124039fd9551bc4754b13.tar.bz2
opensim-SC_OLD-c6f6218f60db023fb4c124039fd9551bc4754b13.tar.xz
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.
Diffstat (limited to 'OpenSim/Data/MySQL/MySQLAssetData.cs')
-rw-r--r--OpenSim/Data/MySQL/MySQLAssetData.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/MySQLAssetData.cs b/OpenSim/Data/MySQL/MySQLAssetData.cs
index b6545d7..b4a9191 100644
--- a/OpenSim/Data/MySQL/MySQLAssetData.cs
+++ b/OpenSim/Data/MySQL/MySQLAssetData.cs
@@ -174,7 +174,13 @@ namespace OpenSim.Data.MySQL
174 { 174 {
175 // TODO: This will let you pass in the connect string in 175 // TODO: This will let you pass in the connect string in
176 // the config, though someone will need to write that. 176 // the config, though someone will need to write that.
177 Initialise(); 177 if (connect == String.Empty) {
178 // This is old seperate config file
179 Initialise();
180 } else {
181 _dbConnection = new MySQLManager(connect);
182 TestTables();
183 }
178 } 184 }
179 185
180 override public void Initialise() 186 override public void Initialise()