diff options
Diffstat (limited to 'OpenSim/Framework/Data.MySQL/MySQLGridData.cs')
-rw-r--r-- | OpenSim/Framework/Data.MySQL/MySQLGridData.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Data.MySQL/MySQLGridData.cs b/OpenSim/Framework/Data.MySQL/MySQLGridData.cs index 7cfac12..c8c4ab0 100644 --- a/OpenSim/Framework/Data.MySQL/MySQLGridData.cs +++ b/OpenSim/Framework/Data.MySQL/MySQLGridData.cs | |||
@@ -219,8 +219,8 @@ namespace OpenSim.Framework.Data.MySQL | |||
219 | if (querysplit.Length == 2) | 219 | if (querysplit.Length == 2) |
220 | { | 220 | { |
221 | Dictionary<string, string> param = new Dictionary<string, string>(); | 221 | Dictionary<string, string> param = new Dictionary<string, string>(); |
222 | param["?first"] = objAlphaNumericPattern.Replace(querysplit[0], "") + "%"; | 222 | param["?first"] = objAlphaNumericPattern.Replace(querysplit[0], String.Empty) + "%"; |
223 | param["?second"] = objAlphaNumericPattern.Replace(querysplit[1], "") + "%"; | 223 | param["?second"] = objAlphaNumericPattern.Replace(querysplit[1], String.Empty) + "%"; |
224 | try | 224 | try |
225 | { | 225 | { |
226 | lock (database) | 226 | lock (database) |
@@ -258,7 +258,7 @@ namespace OpenSim.Framework.Data.MySQL | |||
258 | lock (database) | 258 | lock (database) |
259 | { | 259 | { |
260 | Dictionary<string, string> param = new Dictionary<string, string>(); | 260 | Dictionary<string, string> param = new Dictionary<string, string>(); |
261 | param["?first"] = objAlphaNumericPattern.Replace(querysplit[0], "") + "%"; | 261 | param["?first"] = objAlphaNumericPattern.Replace(querysplit[0], System.String.Empty) + "%"; |
262 | 262 | ||
263 | IDbCommand result = | 263 | IDbCommand result = |
264 | database.Query( | 264 | database.Query( |