________ is an interface in JDBC, which can be used to move a cursor in the result set in both directions.

  • PreparedStatement
  • ResultSet
  • ResultSetMetaData
  • Statement
The ResultSet interface in JDBC is used to retrieve data from a database query result. It allows you to move a cursor in the result set in both directions, forward and backward, and retrieve data from the current row. This is especially useful when you need to navigate and process the result set efficiently.
Add your answer
Loading...

Leave a comment

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