Define ResultSet

Define ResultSet.

- ResultSet provides access to the rows of table.
- A ResultSet maintains a cursor pointing to its current row of data.
- The next() method is used to step through the rows of the ResultSet.
- As it returns false when there are no more rows in the ResultSet object, it can be used in a while loop to iterate through the result set.
- A default ResultSet object is not updatable and has a cursor that moves forward only.
- Thus, you can iterate through it only once and only from the first row to the last row.
- It is possible to produce ResultSet objects that are scrollable and/or updatable.
What are the types of JDBC drivers?
What are the types of JDBC drivers? - Native-API, partly Java driver, also called Type 2..
Define Isolation.
Define Isolation - Isolation ensures one transaction does not interfere with another. The isolation helps when there are concurrent transactions.....
What are the Transaction levels available?
What are the Transaction levels available? - TRANSACTION_NONE, TRANSACTION_READ_UNCOMMITED, TRANSACTION_READ_COMMITTED....
Post your comment