DEVFYI - Developer Resource - FYI

Why can't I invoke the ResultSet methods afterLast and beforeFirst when the method next works?

JDBC Interview Questions and Answers


(Continued from previous question...)

Why can't I invoke the ResultSet methods afterLast and beforeFirst when the method next works?

You are probably using a driver implemented for the JDBC 1.0 API. You need to upgrade to a JDBC 2.0 driver that implements scrollable result sets. Also be sure that your code has created scrollable result sets and that the DBMS you are using supports them.

(Continued on next question...)

Other Interview Questions