mirror of
https://github.com/opensim/opensim.git
synced 2026-05-14 10:45:40 +08:00
First stage port of the XInventoryService
This commit is contained in:
@@ -153,6 +153,11 @@ namespace OpenSim.Data.MySQL
|
||||
UUID.TryParse(reader[name].ToString(), out uuid);
|
||||
m_Fields[name].SetValue(row, uuid);
|
||||
}
|
||||
else if (m_Fields[name].GetValue(row) is int)
|
||||
{
|
||||
int v = Convert.ToInt32(reader[name]);
|
||||
m_Fields[name].SetValue(row, v);
|
||||
}
|
||||
else
|
||||
{
|
||||
m_Fields[name].SetValue(row, reader[name]);
|
||||
|
||||
Reference in New Issue
Block a user