ExecuteNonQuery returns 1 when No records affected?
The call a stored procedure within a package to perform an Update stetement.
Dim retval As integer
Dim cmd As New OracleCommand()
retval = cmd.ExecuteNonQuery() returns 1 when the SQL%ROWCOUNT variable after the Update statement indicates 0?
Is the return value from the ExecuteNonQuery command acccurate with ODP.NET?