Hi,
Do you have a test case? Just something simple. For example, the
following prints "false" for me:
import java.sql.*;
public class TestSimple {
public static void main(String... args) throws Exception {
Class.forName("org.h2.Driver");
Connection conn = DriverManager.getConnection(
"jdbc:h2:mem:");
ResultSet rs = conn.createStatement().executeQuery(
"select * from dual where 1=0");
System.out.println(rs.next());
conn.close();
}
}
Regards,
Thomas
--
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.