* Add single conversion to MSSQLManager.DbTypeFromType
* May resolve storage of prim information under MSSQL
* Thanks SirKimba
This commit is contained in:
Justin Clarke Casey
2009-01-12 17:44:39 +00:00
parent 6e9d5e4ea7
commit 41377008e1

View File

@@ -171,6 +171,10 @@ namespace OpenSim.Data.MSSQL
{
return SqlDbType.Float;
}
if (type == typeof(Single))
{
return SqlDbType.Float;
}
if (type == typeof(int))
{
return SqlDbType.Int;