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
What is the difference between client and server database cursors?
What are temp tables ?
What is jdbc architecture in java?
What are the basic exceptions in jdbc?
What is jdbc url for mysql?
Is jdbc secure?
What is @entity in java?
What is the purpose of the jdbc resultset interface?
What is the full form of jdbc?
What are the types of statements in jdbc?
How do I check in my code whether a maximum limit of database connections have been reached?
Why “no suitable driver” error occurs?
What are the ddl statements?
What is a java driver?
What is CLOB and BLOB datatypes in JDBC?