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 are the 4 types of jdbc drivers?
What is sqlwarning?
What are types of resultset?
What happens if connection is not closed in jdbc?
What is jdbc and odbc in java?
How can I determine the isolation levels supported by my DBMS?
What is JDBC API and when do we use it?
If I use the JDBC API, do I have to use ODBC underneath?
Does JDBC support stored procedures?
When does the result for an sql statement return null?
Is jdbc faster than odbc?
What is Apache DBCP API?
Why can't I invoke the ResultSet methods afterLast and beforeFirst when the method next works?
How many jdbc driver types are there?
How does a file store compare with a jdbc store?