aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite
diff options
context:
space:
mode:
authorDiva Canto2013-07-02 15:48:30 -0700
committerDiva Canto2013-07-02 15:48:30 -0700
commit9725b829d5e476fc6b0894b46520ff1d7aba9936 (patch)
treef8716202d5a98898e63992481ff3042a7b7c3c48 /OpenSim/Data/SQLite
parentReally make it call the method with the query interface (diff)
downloadopensim-SC_OLD-9725b829d5e476fc6b0894b46520ff1d7aba9936.zip
opensim-SC_OLD-9725b829d5e476fc6b0894b46520ff1d7aba9936.tar.gz
opensim-SC_OLD-9725b829d5e476fc6b0894b46520ff1d7aba9936.tar.bz2
opensim-SC_OLD-9725b829d5e476fc6b0894b46520ff1d7aba9936.tar.xz
Do the same for SQLite and MSSQL
Diffstat (limited to 'OpenSim/Data/SQLite')
-rw-r--r--OpenSim/Data/SQLite/SQLiteGridUserData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteGridUserData.cs b/OpenSim/Data/SQLite/SQLiteGridUserData.cs
index 54cef1a..799df91 100644
--- a/OpenSim/Data/SQLite/SQLiteGridUserData.cs
+++ b/OpenSim/Data/SQLite/SQLiteGridUserData.cs
@@ -58,7 +58,7 @@ namespace OpenSim.Data.SQLite
58 58
59 public GridUserData[] GetAll(string userID) 59 public GridUserData[] GetAll(string userID)
60 { 60 {
61 return base.Get("UserID LIKE {0}%", userID); 61 return base.Get(String.Format("UserID LIKE {0}%", userID));
62 } 62 }
63 63
64 } 64 }