diff options
author | Chris Hart | 2012-03-04 16:46:54 -0500 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-03-06 00:27:49 +0000 |
commit | 413bc1e77e07f586f418b14f47fc72ac5b803fa0 (patch) | |
tree | 1cb29f2835a0f400e348493190d2f10964763c6a /OpenSim/Data/MSSQL/MSSQLFriendsData.cs | |
parent | Add WebProfiles config to other config example (diff) | |
download | opensim-SC-413bc1e77e07f586f418b14f47fc72ac5b803fa0.zip opensim-SC-413bc1e77e07f586f418b14f47fc72ac5b803fa0.tar.gz opensim-SC-413bc1e77e07f586f418b14f47fc72ac5b803fa0.tar.bz2 opensim-SC-413bc1e77e07f586f418b14f47fc72ac5b803fa0.tar.xz |
Updates to MSSQL store for 0.7.3 to include:
* Telehub support
* Bugfix to Friends lookups
* Updates to Creator fields to store up to 255 characters for HG item creator storage
Diffstat (limited to 'OpenSim/Data/MSSQL/MSSQLFriendsData.cs')
-rw-r--r-- | OpenSim/Data/MSSQL/MSSQLFriendsData.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLFriendsData.cs b/OpenSim/Data/MSSQL/MSSQLFriendsData.cs index 09dde5e..fef6978 100644 --- a/OpenSim/Data/MSSQL/MSSQLFriendsData.cs +++ b/OpenSim/Data/MSSQL/MSSQLFriendsData.cs | |||
@@ -89,5 +89,11 @@ namespace OpenSim.Data.MSSQL | |||
89 | return DoQuery(cmd); | 89 | return DoQuery(cmd); |
90 | } | 90 | } |
91 | } | 91 | } |
92 | |||
93 | public FriendsData[] GetFriends(Guid principalID) | ||
94 | { | ||
95 | return GetFriends(principalID.ToString()); | ||
96 | } | ||
97 | |||
92 | } | 98 | } |
93 | } | 99 | } |