Hi Evgenij ,
3. 1.4.200 definitely has a bug, but I have no idea why you ever use
> `ResultSet.getTimestamp()` on a `TIME` column. Applications normally use
> ResultSet.getObject(column, LocalTime.class) (this is the best choice for
> H2) or legacy ResultSet.getTime(column) (has problems at l
Hi,
I have a question regarding the following test code:
Class.forName("org.h2.Driver");
Connection conn = DriverManager.getConnection("jdbc:h2:mem:db1", "SA", "");
conn.createStatement().execute("CREATE TABLE A (B TIMESTAMP)");
PreparedStatement ps = conn.prepareStatement("SELECT B FROM A WHERE