First stage port of the XInventoryService

This commit is contained in:
Melanie
2010-01-04 18:47:47 +00:00
parent 3740775472
commit e76333555d
4 changed files with 674 additions and 0 deletions

View File

@@ -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]);