[h2] Re: Release Schedule

2020-08-27 Thread niklas...@gmail.com
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

[h2] Function calls with parameters

2020-08-18 Thread niklas...@gmail.com
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