Answer Posted / p.l.n.kumar
A Resultset is a pointer pointing to the data retrieved
into database buffer.Hence for this reason,Resultset object
exist only as long as client connected with database.
-Resultset maintains cursor pointing to each record
retrieved into DB buffer.
-its cursor position starts from 'before first record'
to 'after last record' .
-Resultset allows unidirectional navigation and also allows
us to retrieve data only once in the life span of the
object.
| Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
Can I set up a connection pool with multiple user IDs? The single ID we are forced to use causes problems when debugging the DBMS.
How can we store the file in the oracle database?
Is it possible to connect to multiple databases simultaneously?
Can I use JDBC to execute non-standard features that my DBMS provides?
What do you understand by DDL and DML statements?
Is jdbc faster than odbc?
What do you understand by jdbc datasource?
How to set NULL values in JDBC PreparedStatement?
Explain about multiple implementations and drive manager?
What is difference between statement and preparedstatement in jdbc?
How many types of jdbc drivers are there?
What is isolation level? How to set it?
code to insert values/rows into oracle database from a java swing textfield when a button is pressed(using preparedstatements)
What is an odbc driver?
How to move the cursor in scrollable resultset ?