11 references to DECIMAL
System.Data (11)
fx\src\data\System\Data\OleDb\ColumnBinding.cs (5)
287
case NativeDBType.
DECIMAL
:
449
case NativeDBType.
DECIMAL
:
776
Debug.Assert(NativeDBType.
DECIMAL
== DbType, "Value_DECIMAL");
788
Debug.Assert(NativeDBType.
DECIMAL
== DbType, "Value_DECIMAL");
1236
case NativeDBType.
DECIMAL
:
fx\src\data\System\Data\OleDb\OLEDB_Enum.cs (4)
167
static private readonly NativeDBType D_Decimal = new NativeDBType( 28, 16, true, false, OleDbType.Decimal, NativeDBType.
DECIMAL
, S_DECIMAL, typeof(System.Decimal), NativeDBType.
DECIMAL
, DbType.Decimal ); // 9 - (tagDec) // MDAC 68447
191
static private readonly NativeDBType D_VarNumeric = new NativeDBType( 255, 16, true, false, OleDbType.VarNumeric, NativeDBType.VARNUMERIC, S_VARNUMERIC, typeof(System.Decimal), NativeDBType.
DECIMAL
, DbType.VarNumeric); // 32 - (unicode pointer)
380
case
DECIMAL
: return D_Decimal;
fx\src\data\System\Data\OleDb\OleDbParameter.cs (2)
462
|| ((NativeDBType.
DECIMAL
== metaType.dbType) || (NativeDBType.NUMERIC == metaType.dbType)
479
else if (!ShouldSerializePrecision() && !ShouldSerializeScale() && ((NativeDBType.
DECIMAL
== _metaType.wType) || (NativeDBType.NUMERIC == _metaType.wType))) { // MDAC 71441