aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLGenericTableHandler.cs
diff options
context:
space:
mode:
authorJohn Hurliman2010-03-05 17:05:15 -0800
committerJohn Hurliman2010-03-05 17:05:15 -0800
commit27b8d13057ff0a79d7162c8876d9796c6cf72111 (patch)
treedb21554a71f0c043041df01f4a4e0e03fd7c5668 /OpenSim/Data/MySQL/MySQLGenericTableHandler.cs
parent* Cache packed throttle data to avoid repeated allocations in CheckForSignifi... (diff)
parentrefactor: Move DetachSingleAttachmentToInv to region module (diff)
downloadopensim-SC_OLD-27b8d13057ff0a79d7162c8876d9796c6cf72111.zip
opensim-SC_OLD-27b8d13057ff0a79d7162c8876d9796c6cf72111.tar.gz
opensim-SC_OLD-27b8d13057ff0a79d7162c8876d9796c6cf72111.tar.bz2
opensim-SC_OLD-27b8d13057ff0a79d7162c8876d9796c6cf72111.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.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Data/MySQL/MySQLGenericTableHandler.cs b/OpenSim/Data/MySQL/MySQLGenericTableHandler.cs
index b170dde..756b42d 100644
--- a/OpenSim/Data/MySQL/MySQLGenericTableHandler.cs
+++ b/OpenSim/Data/MySQL/MySQLGenericTableHandler.cs
@@ -197,8 +197,7 @@ namespace OpenSim.Data.MySQL
197 public virtual T[] Get(string where) 197 public virtual T[] Get(string where)
198 { 198 {
199 using (MySqlCommand cmd = new MySqlCommand()) 199 using (MySqlCommand cmd = new MySqlCommand())
200 { 200 {
201
202 string query = String.Format("select * from {0} where {1}", 201 string query = String.Format("select * from {0} where {1}",
203 m_Realm, where); 202 m_Realm, where);
204 203