diff options
author | Adam Frisby | 2008-01-15 02:09:55 +0000 |
---|---|---|
committer | Adam Frisby | 2008-01-15 02:09:55 +0000 |
commit | b25f9f322cdbcde7fd8c043137bf07992e5ef318 (patch) | |
tree | 7c1a5115b2849dfe388b825dd271271d347f9574 /OpenSim/Framework/Data.MySQL/MySQLUserData.cs | |
parent | Set svn:eol-style. (diff) | |
download | opensim-SC_OLD-b25f9f322cdbcde7fd8c043137bf07992e5ef318.zip opensim-SC_OLD-b25f9f322cdbcde7fd8c043137bf07992e5ef318.tar.gz opensim-SC_OLD-b25f9f322cdbcde7fd8c043137bf07992e5ef318.tar.bz2 opensim-SC_OLD-b25f9f322cdbcde7fd8c043137bf07992e5ef318.tar.xz |
* Mother of all commits:
* Cleaned up copyright notices in AssemblyInfo.cs's
* Added Copyright headers to a bunch of files missing them
* Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
Diffstat (limited to 'OpenSim/Framework/Data.MySQL/MySQLUserData.cs')
-rw-r--r-- | OpenSim/Framework/Data.MySQL/MySQLUserData.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Data.MySQL/MySQLUserData.cs b/OpenSim/Framework/Data.MySQL/MySQLUserData.cs index 76ad551..f637db6 100644 --- a/OpenSim/Framework/Data.MySQL/MySQLUserData.cs +++ b/OpenSim/Framework/Data.MySQL/MySQLUserData.cs | |||
@@ -347,8 +347,8 @@ namespace OpenSim.Framework.Data.MySQL | |||
347 | if (querysplit.Length == 2) | 347 | if (querysplit.Length == 2) |
348 | { | 348 | { |
349 | Dictionary<string, string> param = new Dictionary<string, string>(); | 349 | Dictionary<string, string> param = new Dictionary<string, string>(); |
350 | param["?first"] = objAlphaNumericPattern.Replace(querysplit[0], "") + "%"; | 350 | param["?first"] = objAlphaNumericPattern.Replace(querysplit[0], String.Empty) + "%"; |
351 | param["?second"] = objAlphaNumericPattern.Replace(querysplit[1], "") + "%"; | 351 | param["?second"] = objAlphaNumericPattern.Replace(querysplit[1], String.Empty) + "%"; |
352 | try | 352 | try |
353 | { | 353 | { |
354 | lock (database) | 354 | lock (database) |
@@ -386,7 +386,7 @@ namespace OpenSim.Framework.Data.MySQL | |||
386 | lock (database) | 386 | lock (database) |
387 | { | 387 | { |
388 | Dictionary<string, string> param = new Dictionary<string, string>(); | 388 | Dictionary<string, string> param = new Dictionary<string, string>(); |
389 | param["?first"] = objAlphaNumericPattern.Replace(querysplit[0], "") + "%"; | 389 | param["?first"] = objAlphaNumericPattern.Replace(querysplit[0], String.Empty) + "%"; |
390 | 390 | ||
391 | IDbCommand result = | 391 | IDbCommand result = |
392 | database.Query( | 392 | database.Query( |