What is meant by a ResultSet?

Answers were Sorted based on User's Feedback



What is meant by a ResultSet?..

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

What is meant by a ResultSet?..

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

What is meant by a ResultSet?..

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

Post New Answer

More JDBC Interview Questions

What are collection pools?

0 Answers  


What is jdbc odbc in java?

0 Answers  


Explain the difference between rowset vs. Resultset in jdbc?

0 Answers  


i have 1000 records in resultset, how to get first 100 records from resultset, because resultset fetch all 1000 records at a time?

8 Answers   HSBC,


What is getconnection method in java?

0 Answers  






Explain how data flows from view to db and reverse

0 Answers   Bosch,


What is connection pooling? What Method and class used for Connection pooling in Java?

2 Answers  


What is execute in java?

0 Answers  


What is the benefit of having jdbcrowset implementation? Why do we need a jdbcrowset like wrapper around resultset?

0 Answers  


any one can explain about policy file rule? when i connect database with applet then ther is no compile time error but the run time error is occureed.i.e access is denied.policy file rule is related to this problem.

0 Answers  


How can you tune SQL statements?

2 Answers   Wipro,


What type of driver you use in real-time projects?

3 Answers  


Categories