adspace


How to make updates to updatable result sets in jdbc?

Answer Posted / Randhir Kumar Dubey

To make updates to updatable result sets in JDBC, you can use the updateXXX() methods (where XXX represents the type of column being updated, such as INT, STRING, etc.) on the ResultSet object. You must also call the acceptChanges() method after updating all rows to commit the changes.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we return resultset in java?

990