InterviewSolution
Saved Bookmarks
| 1. |
Why Can't I Invoke The Resultset Methods Afterlast And Beforefirst When The Method Next Works? |
|
Answer» 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. 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. |
|