aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data.MySQL/MySQLManager.cs
diff options
context:
space:
mode:
authorlbsa712008-02-13 12:06:09 +0000
committerlbsa712008-02-13 12:06:09 +0000
commitbcd3a5b28bc63426e5ac1f4642afca4a391ece28 (patch)
treed38441c04425259fe450d062e7be25c90ae7cb09 /OpenSim/Framework/Data.MySQL/MySQLManager.cs
parent* Removed a debug line that got called every frame. (diff)
downloadopensim-SC_OLD-bcd3a5b28bc63426e5ac1f4642afca4a391ece28.zip
opensim-SC_OLD-bcd3a5b28bc63426e5ac1f4642afca4a391ece28.tar.gz
opensim-SC_OLD-bcd3a5b28bc63426e5ac1f4642afca4a391ece28.tar.bz2
opensim-SC_OLD-bcd3a5b28bc63426e5ac1f4642afca4a391ece28.tar.xz
* Introduced customizable table names on MySQL and MSSQL UserData plug-ins.
[Provided by openlifegrid.com]
Diffstat (limited to 'OpenSim/Framework/Data.MySQL/MySQLManager.cs')
-rw-r--r--OpenSim/Framework/Data.MySQL/MySQLManager.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Framework/Data.MySQL/MySQLManager.cs b/OpenSim/Framework/Data.MySQL/MySQLManager.cs
index e763bfa..0ec976c 100644
--- a/OpenSim/Framework/Data.MySQL/MySQLManager.cs
+++ b/OpenSim/Framework/Data.MySQL/MySQLManager.cs
@@ -200,7 +200,9 @@ namespace OpenSim.Framework.Data.MySQL
200 string tableName = (string) tables["TABLE_NAME"]; 200 string tableName = (string) tables["TABLE_NAME"];
201 string comment = (string) tables["TABLE_COMMENT"]; 201 string comment = (string) tables["TABLE_COMMENT"];
202 if (tableList.ContainsKey(tableName)) 202 if (tableList.ContainsKey(tableName))
203 {
203 tableList[tableName] = comment; 204 tableList[tableName] = comment;
205 }
204 } 206 }
205 catch (Exception e) 207 catch (Exception e)
206 { 208 {