You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to H2 Database
Hi all,
I encountered a strange problem, while trying to do this:
ResultSet rs = prepared.executeQuery();
int i = rs.getInt(1);
if (rs.wasNull()) i = -1;
On NULL value H2 throws an exception:
org.h2.jdbc.JdbcSQLException: No data is available [2000-73]
at org.h2.message.Message.getSQLException(Message.java:103)
at org.h2.message.Message.getSQLException(Message.java:114)
at org.h2.message.Message.getSQLException(Message.java:77)
at org.h2.message.Message.getSQLException(Message.java:149)
at
org.h2.jdbc.JdbcResultSet.checkOnValidRow(JdbcResultSet.java:2971)
at org.h2.jdbc.JdbcResultSet.get(JdbcResultSet.java:2977)
at org.h2.jdbc.JdbcResultSet.getInt(JdbcResultSet.java:285)
[...]
H2 1.0.73 (2008-05-31) embedded on Linux.
I will solve this problem by changing the query, but this should be
possible...
Thomas Mueller
unread,
Jun 8, 2008, 4:41:24 PM6/8/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to h2-da...@googlegroups.com
Hi,
You need to call rs.next().
Regards, Thomas
Milos Pejovic
unread,
Jun 8, 2008, 4:43:17 PM6/8/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to H2 Database
Never mind, I made an error... I forgot to put rs.next() in order to
fetch the row...
H2 works fine as usual :-)
Milos Pejovic
unread,
Jun 8, 2008, 4:45:40 PM6/8/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message