Can anybody tell my what this error means: java.sql.SQLException: Cannot absolute position to row 0
+1
A:
Most things in the JDBC API are 1-based. The first column of a ResultSet is 1; the first parameter of a prepared statement is 1; and the first row of a scrollable resultset is 1.
You probably tried to set the current row to 0.
Jeff Knecht
2010-10-26 20:17:50
This would be my guess with the limited info presented.
Romain Hippeau
2010-10-26 22:01:13