Gets the value of the specified column as a Decimal object.
public Decimal GetDecimal( int columnNumber );
Remarks
This method retrieves the specified zero-based column value as a Decimal object. No conversions are performed, therefore the data retrieved must already be a Decimal or an exception is generated. It can be used to retrieve numeric, money, and integer field values. This method cannot be used to retrieve null values. Call AdsDataReader.IsDBNull to check for null values before calling this method.
See Also