prabhakar

prabhakar

what is the concept of Resultset in JDBC...?? plz brif me

View Answers

August 30, 2013 at 10:01 PM

Hi,

ResultSet represents the table data. When you execute the select query in your JDBC program it returns the data from database. The returned data is stored in the ResultSet class.

You an iterate the ResultSet object to get all the data from database.

Here is example of JDBC ResultSet Example.

Thanks


August 30, 2013 at 10:03 PM

Hi,

View more examples of JDBC at JDBC Tutorials index page.

Thanks









Related Tutorials/Questions & Answers:
prabhakar

Ads