Hola
I'm having problems with double fields in MySQL.
I see this code in MySqlDataProvider:
public override DbType GetDbType(string mySqlType)
{
switch (mySqlType.ToLower())
{
...
case "decimal":
case "float":
case "newdecimal":
case "numeric":
case "double":
case "real":
return DbType.Decimal;
...
I think that float, numeric, double and real must return DbType.Double;
I'm not sure with other types, but with double I haven't problems if I change it:
Saludos.
Ricardo Garcia.