@@ -72,7 +72,6 @@ OdbcType GetOdbcType(DbColumnInfo column)
72
72
{ ( int ) OdbcType . SmallInt , new DbToCs ( "(short?)" , "short.Parse({0})" , "{0}.ToString()" , "short?" , typeof ( short ) , typeof ( short ? ) , "{0}.Value" , "GetInt16" ) } ,
73
73
{ ( int ) OdbcType . Int , new DbToCs ( "(int?)" , "int.Parse({0})" , "{0}.ToString()" , "int?" , typeof ( int ) , typeof ( int ? ) , "{0}.Value" , "GetInt32" ) } ,
74
74
{ ( int ) OdbcType . BigInt , new DbToCs ( "(long?)" , "long.Parse({0})" , "{0}.ToString()" , "long?" , typeof ( long ) , typeof ( long ? ) , "{0}.Value" , "GetInt64" ) } ,
75
- { ( int ) OdbcType . Decimal , new DbToCs ( "(decimal?)" , "decimal.Parse({0})" , "{0}.ToString()" , "decimal?" , typeof ( decimal ) , typeof ( decimal ? ) , "{0}.Value" , "GetDecimal" ) } ,
76
75
{ ( int ) OdbcType . Real , new DbToCs ( "(float?)" , "float.Parse({0})" , "{0}.ToString()" , "float?" , typeof ( float ) , typeof ( float ? ) , "{0}.Value" , "GetFloat" ) } ,
77
76
{ ( int ) OdbcType . Double , new DbToCs ( "(double?)" , "double.Parse({0})" , "{0}.ToString()" , "double?" , typeof ( double ) , typeof ( double ? ) , "{0}.Value" , "GetDouble" ) } ,
78
77
{ ( int ) OdbcType . Decimal , new DbToCs ( "(decimal?)" , "decimal.Parse({0})" , "{0}.ToString()" , "decimal?" , typeof ( decimal ) , typeof ( decimal ? ) , "{0}.Value" , "GetDecimal" ) } ,
0 commit comments