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.
Loading...
Related Quiz
- The operator ______ is invalid in Java.
- A ________ is a result-bearing computation that can be canceled and can compute the result asynchronously provided by ExecutorService.
- ________ allows you to traverse the collection, access the element, and insert
- How does the behavior of CachedThreadPool differ from that of FixedThreadPool in terms of thread creation and task management?
- Which interface or class should a class use or extend to create a new thread in Java?