Implement saving user account data

This commit is contained in:
Melanie
2009-12-31 01:34:03 +00:00
parent 3507005d9d
commit 99ad7aac7f
4 changed files with 26 additions and 5 deletions

View File

@@ -65,7 +65,7 @@ namespace OpenSim.Data.MSSQL
public UserAccountData Get(UUID principalID, UUID scopeID)
{
UserAccountData ret = new UserAccountData();
ret.Data = new Dictionary<string, object>();
ret.Data = new Dictionary<string, string>();
string sql = string.Format("select * from {0} where UUID = @principalID", m_Realm);
if (scopeID != UUID.Zero)