mirror of
https://github.com/opensim/opensim.git
synced 2026-08-12 12:25:42 +08:00
Polished the IUserService interface.
This commit is contained in:
@@ -168,6 +168,11 @@ namespace OpenSim.Data.MSSQL
|
||||
return true;
|
||||
}
|
||||
|
||||
public bool Store(UserAccountData data, UUID principalID, string token)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
public bool SetDataItem(UUID principalID, string item, string value)
|
||||
{
|
||||
string sql = string.Format("update {0} set {1} = @{1} where UUID = @UUID", m_Realm, item);
|
||||
|
||||
@@ -40,10 +40,10 @@ namespace OpenSim.Data.MySQL
|
||||
public MySqlUserAccountData(string connectionString, string realm)
|
||||
: base(connectionString, realm, "UserAccount")
|
||||
{
|
||||
public bool Store(UserAccountData data, UUID principalID, string token)
|
||||
{
|
||||
Store(data);
|
||||
}
|
||||
}
|
||||
public bool Store(UserAccountData data, UUID principalID, string token)
|
||||
{
|
||||
return Store(data);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user