aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLGenericTableHandler.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-03-05 22:29:51 +0000
committerJustin Clark-Casey (justincc)2010-03-05 22:29:51 +0000
commite906dd3d28a3cb4dfada36daccfd8900f0e844b5 (patch)
treee31dee4b51a3d9447a7fab0dc4239233b0e843b4 /OpenSim/Data/MySQL/MySQLGenericTableHandler.cs
parentFix LocalPresenceServiceConnector test now that the hardcoded test data has b... (diff)
downloadopensim-SC_OLD-e906dd3d28a3cb4dfada36daccfd8900f0e844b5.zip
opensim-SC_OLD-e906dd3d28a3cb4dfada36daccfd8900f0e844b5.tar.gz
opensim-SC_OLD-e906dd3d28a3cb4dfada36daccfd8900f0e844b5.tar.bz2
opensim-SC_OLD-e906dd3d28a3cb4dfada36daccfd8900f0e844b5.tar.xz
add initial UserGrid service classes as per diva's direction
this will initially store home location data instead of the presence service compiles but not enough to actually test yet
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