Re: [h2] In-Memory H2 deleted rows not garbage collected.

2023-05-23 Thread Arjun Sahoo
The problem still exists in 2.1.214 and with LOB_TIMEOUT=1000. The issue could not be reproduced with the current git build, but we can't use any build other than official release. May I know when the next official release is?. On Tue, May 23, 2023 at 5:41 AM Andrei Tokar wrote: > And to

Re: [h2] Problem updating from 1.4.200 to 2.1.214

2023-05-23 Thread Noel Grandin
I don't know how that code could ever have compiled. A JdbcDataSource is a supplier of java.sql.Connection objects, it is not a subclass (or a superclass) of Connection. -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To unsubscribe from this

Re: [h2] Problem updating from 1.4.200 to 2.1.214

2023-05-23 Thread Andreas Reichel
Greetings, maybe compile H2 from source by yourself with a JDK 8, just to prove any doubts. Best regards Andreas On Tue, 2023-05-23 at 14:51 +0530, Vardhan Belide wrote: > Hi, > I am trying to update from 1.4.200 to 2.1.214. I am using Java 8 in > my project. I have the following piece of code >

[h2] Problem updating from 1.4.200 to 2.1.214

2023-05-23 Thread Vardhan Belide
Hi, I am trying to update from 1.4.200 to 2.1.214. I am using Java 8 in my project. I have the following piece of code private final Connection decorated; if(decorated instanceOf JdbcDataSource) { } I am getting the error message incompatible types: java.sql.Connection cannot be converted to