Re: [h2] Re: Corrupt Database Chunk Wont Recover

2019-07-16 Thread Andrei Tokar
You can get them from maven repo https://mvnrepository.com/artifact/com.h2database/h2. So you did not like whatever I've recovered? I doubt that there is any more data in this file. -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To

[h2] Re: mapping interval to duration

2019-07-16 Thread Roland M.
Thank you very much for your quick response. That is easy (if you know how :-)) Am Dienstag, 16. Juli 2019 11:29:42 UTC+2 schrieb Evgenij Ryazanov: > > Hello. > > You need to use > getObject(1, Duration.class); > -- You received this message because you are subscribed to the Google Groups "H2

[h2] Re: mapping interval to duration

2019-07-16 Thread Evgenij Ryazanov
Hello. You need to use getObject(1, Duration.class); -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To unsubscribe from this group and stop receiving emails from it, send an email to h2-database+unsubscr...@googlegroups.com. To view this

[h2] mapping interval to duration

2019-07-16 Thread Roland M.
Hello, how can I mapp an interval (hour to minute) to java.time.duration from a result set? So, I have a column with data type INTERVAL HOUR (3) TO MINUTE. And now I want to mapp it into java.time.Duration when the ResultSet is processed Something like: ResultSet results =