what are the types of result sets in JDBC 3.0 ?
Answer Posted / bawa
I think the first answer is correct. The type of a ResultSet object determines the level of its functionality in two areas: the ways in which the cursor can be manipulated, and how concurrent changes made to the underlying data source are reflected by the ResultSet object. Considering this factor, the sensitivity of the ResultSet object is determined by one of three different ResultSet types: TYPE_FORWARD_ONLY, TYPE_SCROLL_INSENSITIVE and TYPE_SCROLL_SENSITIVE. View the Suns's official doc at http://java.sun.com/docs/books/tutorial/jdbc/basics/retrieving.html
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Is jpa faster than jdbc?
How does jdbc connect to database?
What causes the "No suitable driver" error?
What do you understand by jdbc driver and explain its types?
How do I insert an image file (or other raw data) into a database?
What class.forname does, while loading the drivers?
What is difference between odbc and jdbc?
What do you mean by batch processing in jdbc?
What is statement and resultset in jdbc?
What is JDBC PreparedStatement?
What is jdbc odbc bridge?
Explain the locking system in jdbc & its types?
How many types of resultset are there in jdbc?
What is createstatement method in java?
What is odbc and jdbc drivers?