The ________ interface of the JDBC API provides cursor support, which allows forward and backward navigation through the result set.

  • Connection
  • ResultSet
  • ResultSetMetaData
  • Statement
The ResultSet interface in the JDBC API provides cursor support, allowing you to navigate through the result set of a database query. You can move forward and backward, retrieve data, and perform various operations on the result set. The other options do not provide cursor support.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *