Hi,
See http://www.h2database.com/html/sourceError.html
NO_DATA_AVAILABLE = 2000
The error with code 2000 is thrown when the result set is positioned
before the first or after the last row, or not on a valid row for the
given operation. Example of wrong usage:
ResultSet rs = stat.executeQuery("SELECT * FROM DUAL");
rs.getString(1);
Correct:
ResultSet rs = stat.executeQuery("SELECT * FROM DUAL");
rs.next();
rs.getString(1);
Regards,
Thomas
On Fri, Jun 12, 2009 at 7:18 PM, normad<[email protected]> wrote:
>
> what does this mean?
> org.h2.jdbc.JdbcSQLException: No data is available [2000-114]
> im trying to access fairly well placed data. It only comes up at some
> times
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "H2
Database" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/h2-database?hl=en
-~----------~----~----~----~------~----~------~--~---