OraclePreparedStatement has a registerReturnParameter that works with a "Returning into" sql clause. What's the Java equivalent (and a SQL statement) that would do the same? I believe getGeneratedKeys() only returns an auto-incremented column -- is there a way to get the entire resultset for all rows updated.
Thanks!
prepareStatementcall? Apart from the method that takes an inRETURN_GENERATED_KEYSas parameter there are also versions allowing you to specify which columns to return. – Jörn Horstmann Feb 17 '11 at 19:52