aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLGenericTableHandler.cs
diff options
context:
space:
mode:
authorDiva Canto2012-11-07 20:05:30 -0800
committerDiva Canto2012-11-07 20:05:30 -0800
commita407eb287f15efc5d27de7754f0512599bdaee2a (patch)
treea28cc1909bdb4637bbd035f3e6ee5f1fd0bae5ea /OpenSim/Data/MySQL/MySQLGenericTableHandler.cs
parentHG: Hopefully this fixes the issues with port 80 once and for all. (diff)
parentBulletSim: add skeleton classes for shape objectification. This will eventual... (diff)
downloadopensim-SC_OLD-a407eb287f15efc5d27de7754f0512599bdaee2a.zip
opensim-SC_OLD-a407eb287f15efc5d27de7754f0512599bdaee2a.tar.gz
opensim-SC_OLD-a407eb287f15efc5d27de7754f0512599bdaee2a.tar.bz2
opensim-SC_OLD-a407eb287f15efc5d27de7754f0512599bdaee2a.tar.xz
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Data/MySQL/MySQLGenericTableHandler.cs')
-rw-r--r--OpenSim/Data/MySQL/MySQLGenericTableHandler.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/MySQLGenericTableHandler.cs b/OpenSim/Data/MySQL/MySQLGenericTableHandler.cs
index da8e958..995c6a5 100644
--- a/OpenSim/Data/MySQL/MySQLGenericTableHandler.cs
+++ b/OpenSim/Data/MySQL/MySQLGenericTableHandler.cs
@@ -219,6 +219,8 @@ namespace OpenSim.Data.MySQL
219 219
220 public virtual bool Store(T row) 220 public virtual bool Store(T row)
221 { 221 {
222// m_log.DebugFormat("[MYSQL GENERIC TABLE HANDLER]: Store(T row) invoked");
223
222 using (MySqlCommand cmd = new MySqlCommand()) 224 using (MySqlCommand cmd = new MySqlCommand())
223 { 225 {
224 string query = ""; 226 string query = "";
@@ -273,6 +275,10 @@ namespace OpenSim.Data.MySQL
273 275
274 public virtual bool Delete(string[] fields, string[] keys) 276 public virtual bool Delete(string[] fields, string[] keys)
275 { 277 {
278// m_log.DebugFormat(
279// "[MYSQL GENERIC TABLE HANDLER]: Delete(string[] fields, string[] keys) invoked with {0}:{1}",
280// string.Join(",", fields), string.Join(",", keys));
281
276 if (fields.Length != keys.Length) 282 if (fields.Length != keys.Length)
277 return false; 283 return false;
278 284