Using UPDATE...RETURNING...INTO...
413760Jan 30 2004 — edited Feb 5 2004I am trying to use the UPDATE statement with the RETURNING clause:
string sSql = "UPDATE ... RETURNING x, y INTO :ix, sy";
ExecuteNonQuery(); // No use for me :(
// I want to do this:
OracleDataReader oReader = ExecuteReader();
Will this work?
TIA
Raj