W
Wolfgang Meister
In order to retrieve a NUMBER value out of a column from an Oracle Table iinto a local variable
there are two functions:
Decimal var = reader.GetDecimal(1);
or
Decimal var = reader.GetOracleDecimal(1);
What are the differences ?
I am using the standard (non optimized) Oracle.DatAccess.Client resp. Oracle.DatAccess.Types
there are two functions:
Decimal var = reader.GetDecimal(1);
or
Decimal var = reader.GetOracleDecimal(1);
What are the differences ?
I am using the standard (non optimized) Oracle.DatAccess.Client resp. Oracle.DatAccess.Types