* Add single conversion to MSSQLManager.DbTypeFromType
* May resolve storage of prim information under MSSQL
* Thanks SirKimba
0.6.2-post-fixes
Justin Clarke Casey 2009-01-12 17:44:39 +00:00
parent 6e9d5e4ea7
commit 41377008e1
1 changed files with 4 additions and 0 deletions

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;