aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MSSQL
diff options
context:
space:
mode:
authorMelanie2009-12-31 02:26:00 +0000
committerMelanie2009-12-31 02:26:00 +0000
commit01f6aee020eddb46893cbfbcf3b1e114a85ac261 (patch)
tree6664f3d4aea41a2c8f6bab9b2645a2e10212edcc /OpenSim/Data/MSSQL
parentImplement saving user account data (diff)
downloadopensim-SC_OLD-01f6aee020eddb46893cbfbcf3b1e114a85ac261.zip
opensim-SC_OLD-01f6aee020eddb46893cbfbcf3b1e114a85ac261.tar.gz
opensim-SC_OLD-01f6aee020eddb46893cbfbcf3b1e114a85ac261.tar.bz2
opensim-SC_OLD-01f6aee020eddb46893cbfbcf3b1e114a85ac261.tar.xz
Implement avatar picker queries
Diffstat (limited to 'OpenSim/Data/MSSQL')
-rw-r--r--OpenSim/Data/MSSQL/MSSQLUserAccountData.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLUserAccountData.cs b/OpenSim/Data/MSSQL/MSSQLUserAccountData.cs
index ca09029..01c64dc 100644
--- a/OpenSim/Data/MSSQL/MSSQLUserAccountData.cs
+++ b/OpenSim/Data/MSSQL/MSSQLUserAccountData.cs
@@ -194,5 +194,10 @@ namespace OpenSim.Data.MSSQL
194 { 194 {
195 return null; 195 return null;
196 } 196 }
197
198 public UserAccountData[] GetUsers(UUID scopeID, string query)
199 {
200 return null;
201 }
197 } 202 }
198} 203}