mirror of
https://github.com/opensim/opensim.git
synced 2026-07-03 00:57:49 +08:00
* Reworked Data Framework so that MSSQL works
* Introduced uint as field type * Removed what should be superfluous Guid handling * Introduced stub MySQLDataReader if we need to fix the Guid handling anyway
This commit is contained in:
@@ -108,6 +108,10 @@ namespace OpenSim.Framework.Data.Base
|
||||
{
|
||||
value = reader.GetUShort(m_fieldName);
|
||||
}
|
||||
else if (ValueType == typeof(uint))
|
||||
{
|
||||
value = reader.GetUInt32(m_fieldName);
|
||||
}
|
||||
else if (ValueType == typeof(byte[]))
|
||||
{
|
||||
value = reader.GetBytes(m_fieldName);
|
||||
|
||||
Reference in New Issue
Block a user