Posted By:
Michael_Morasch
Posted On:
Tuesday, July 30, 2002 07:45 AM
I need help getting the # of rows updated by an oracle procedure. currently, i am trying to do the following
rowsAffected = updateProcedure.executeUpdate()
However, this always returns 0 - despite the fact that the row was updated in the database!
I have also tried:
updateProcedure.execute();
rowsAffected = updateProcedure.getUpdateCount();
However, this always returns -1 (again, despite the fact that the row has been updated)
I would greatly appreciate any help you can give!