What is meant by a ResultSet?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / devarathnam c,kotagudibanda(po
Hi...Actually ResultSet is an interface in JDBC API.
Which can be used to accessing the data from the database ,
i mean which stores the database objects
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / hyma
ResultSet is an interface in jdbc API which represent
memory area at frontend where set of rows retrived from
backend are stored,This memory area ia called cursor.
| Is This Answer Correct ? | 1 Yes | 3 No |
What is setautocommit in jdbc?
What is Type-3 Driver and when this driver is used?
What does jdbc stand for?
Expalin the method of calling a stored procedure from jdbc.
Describe the steps needed to execute a sql query using jdbc.
How do I find jdbc version?
What is the difference between executing, executequery, executeupdate in jdbc?
How can we execute stored procedures?
What is the query used to display all tables names in SQL Server (Query analyzer)?
If you are truncated using JDBC, how can you that how much data is truncated?
why we don't use the type 2 driver for connect to the database in jdbc?
Which is best database for java?