P
Pia Stevens
In a program I coded:
using Oracle.DataAccess.Client;
using Oracle.DataAccess.Types;
.....
OracleDecimal num = reader.GetOracleDecimal(reader.GetOrdinal("MYNUM"));
OracleDateTime ts = reader.GetOracleDateTime(reader.GetOrdinal("MYDATE"));
The first fetch statement (GetOracleDecimal) statement passed successfully
the compiler while the second (GetOracleDateTime) yields a compiler error:
The type or namespace name 'OracleDataTime'could not be found"
Why ?
Pia
using Oracle.DataAccess.Client;
using Oracle.DataAccess.Types;
.....
OracleDecimal num = reader.GetOracleDecimal(reader.GetOrdinal("MYNUM"));
OracleDateTime ts = reader.GetOracleDateTime(reader.GetOrdinal("MYDATE"));
The first fetch statement (GetOracleDecimal) statement passed successfully
the compiler while the second (GetOracleDateTime) yields a compiler error:
The type or namespace name 'OracleDataTime'could not be found"
Why ?
Pia