From 9f6b3e2357e76b9b85b447da189b4bf4163edd3c Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Tue, 13 Nov 2007 22:48:19 +0000 Subject: * Added AvatarPicker in Standalone mode. Works for finding avatar to ban, manually trying to add a friend (with the add button) or useful to those who are curious which usernames have visited your standalone sim. Important for future development :D. * Grid mode always returns 0 results until the Grid Communications portion is done. --- OpenSim/Framework/Data.MSSQL/MSSQLGridData.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'OpenSim/Framework/Data.MSSQL') diff --git a/OpenSim/Framework/Data.MSSQL/MSSQLGridData.cs b/OpenSim/Framework/Data.MSSQL/MSSQLGridData.cs index 1946790..1516fec 100644 --- a/OpenSim/Framework/Data.MSSQL/MSSQLGridData.cs +++ b/OpenSim/Framework/Data.MSSQL/MSSQLGridData.cs @@ -28,10 +28,12 @@ using System; using System.Collections.Generic; using System.Data; +using OpenSim.Framework; using System.Security.Cryptography; using System.Text; using libsecondlife; + namespace OpenSim.Framework.Data.MSSQL { /// @@ -130,7 +132,16 @@ namespace OpenSim.Framework.Data.MSSQL return row; } + /// + /// // Returns a list of avatar and UUIDs that match the query + /// + public List GeneratePickerResults(LLUUID queryID, string query) + { + //Do nothing yet + List returnlist = new List(); + return returnlist; + } /// /// Adds a new specified region to the database /// @@ -190,5 +201,7 @@ namespace OpenSim.Framework.Data.MSSQL { return null; } + // This is here because MSSQL GridData only seems to know about itself o.O + } } \ No newline at end of file -- cgit v1.1