Under JDBC, ResultSet.next(. will return what type of value?
A.
string
B.
integer
C.
float
D.
Boolean
E.
double
Explanation:
Quoted directly from Sun’s Java document site at
http//developer.java.sun.com/ ResultSet.next(. returns a boolean true if there is a
next row and false if not (meaning the end of the data/set has been reached..
Conceptually, a pointer or cursor is positioned just before the first row when the
ResultSet is obtained. Invoking next(. moves to the first row, then the second and so on