Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question
Have you tried specifying the columns names or indizes to return in the prepareStatement call? Apart from the method that takes an in RETURN_GENERATED_KEYS as parameter there are also versions allowing you to specify which columns to return. – Jörn Horstmann Feb 17 '11 at 19:52
Which ones were with Java PreparedStatement? – Dirk Feb 17 '11 at 22:09
Is this a normal SQL statement or is this a stored procedure call? – Powerlord Feb 17 '11 at 22:22
Normal Sql ......... – Dirk Feb 17 '11 at 23:58

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.