Add MSSQL login processing fix for servers run on different locales.

This may no longer be an issue with better locale enforcement in OpenSimulator but it doesn't hurt to have this patch.
http://opensimulator.org/mantis/view.php?id=4680
Thanks to controlbreak for this
0.7.4.1
Justin Clark-Casey (justincc) 2012-03-31 01:12:04 +01:00
parent 69fc8c4985
commit 38d241a317
2 changed files with 6 additions and 0 deletions

View File

@ -71,6 +71,7 @@ what it is today.
* CharlieO
* ChrisDown
* Chris Yeoh (IBM)
* controlbreak
* coyled
* Daedius
* Dong Jun Lan (IBM)

View File

@ -104,6 +104,11 @@ namespace OpenSim.Data.MSSQL
{
return SqlDbType.BigInt;
}
if (type == typeof(DateTime))
{
return SqlDbType.DateTime;
}
return SqlDbType.VarChar;
}