* Add single conversion to MSSQLManager.DbTypeFromType * May resolve storage of prim information under MSSQL * Thanks SirKimba0.6.2-post-fixes
parent
6e9d5e4ea7
commit
41377008e1
|
@ -171,6 +171,10 @@ namespace OpenSim.Data.MSSQL
|
||||||
{
|
{
|
||||||
return SqlDbType.Float;
|
return SqlDbType.Float;
|
||||||
}
|
}
|
||||||
|
if (type == typeof(Single))
|
||||||
|
{
|
||||||
|
return SqlDbType.Float;
|
||||||
|
}
|
||||||
if (type == typeof(int))
|
if (type == typeof(int))
|
||||||
{
|
{
|
||||||
return SqlDbType.Int;
|
return SqlDbType.Int;
|
||||||
|
|
Loading…
Reference in New Issue