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
This commit is contained in:
Chris Hart
2012-03-04 16:46:54 -05:00
committed by Justin Clark-Casey (justincc)
parent ac934e2dbb
commit 413bc1e77e
4 changed files with 169 additions and 7 deletions

View File

@@ -89,5 +89,11 @@ namespace OpenSim.Data.MSSQL
return DoQuery(cmd);
}
}
public FriendsData[] GetFriends(Guid principalID)
{
return GetFriends(principalID.ToString());
}
}
}