[h2] MVStore + MVCC + Null pointer exception on concurrent upsert/select

2016-01-19 Thread demijon
We are evaluating H2 1.4.190 to embed in our application for the following use case. 1. Load reference data to H2 from RDBMS on application startup. ( To speed up application startup, we tried loading multiple tables in parallel. But this is taking more time than to load the tables serially.

Re: [h2] encrypted database with file password

2016-01-19 Thread Dave Anonymous
Hi Sylvain, you can use a hashed sa password and add this to the connection url: jdbc:h2:tcp://localhost/DB;PASSWORD_HASH=TRUE; Best Regards Dave -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To unsubscribe from this group and stop receiving

[h2] how can i delete all .db files when i uniinstall my java application

2016-01-19 Thread AKHIL KOTTAKKAL AKHIL
how can i delete all .db files when i uniinstall my java application -- 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

Re: [h2] how can i delete all .db files when i uniinstall my java application

2016-01-19 Thread Ryan How
That would be the job of the uninstaller. eg. If they are all in a single directory then delete that directory. So I'd look up the documentation for the installer / uninstaller. On 19/01/2016 11:15 PM, AKHIL KOTTAKKAL AKHIL wrote: how can i delete all .db files when i uniinstall my java