[h2] File corrupted while reading record

2018-06-04 Thread Loïc Rollus
Hello, *Context:* I develop a software (java) with an embedded h2. This software is released on multiple customers laptop (windows 7/10). It's not a server app but I've choosen spring boot to built as we may move in the future to a client/Server app. H2 version is 1.4.196 and URL connection is

[h2] Re: embedded server (like derby?)

2018-06-04 Thread Evgenij Ryazanov
Hello. If you start a H2 Server in your application with Server.createTcpServer(optional_parameters).start(); you can connect to database from the same process using local URLs and remotely with remote URLs. If you don't care which application will use the database directly and all of them hav

[h2] embedded server (like derby?)

2018-06-04 Thread Adam McMahon
Hi H2 Group, Derby has a mode called "embedded server". In this mode, Derby accepts embedded connecions internally within the same JVM and also external connections via the network server protocol. Is there something similar to this in H2? Best, -Adam -- You received this message because y