State true or falseCan we retrieve a whole row of data at once, instead of calling an individual ResultSet.getXXX method for each column ?

A) True
B) False
Explanation: The ResultSet.getXXX methods are the only way to retrieve data from a ResultSet object, which means that you have to make a method call for each column of a row. It is unlikely that this is the cause of a performance problem, however, because it is difficult to see how a column could be fetched without at least the cost of a function call in any scenario.

Showing Answers 1 - 4 of 4 Answers

Praveen

  • May 17th, 2006
 

we cannot retrieve a whole row of data at once.

In JDBC getXXX() are the methods which are used to get the data from ResultSet by columnwise.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions