BLOB or CLOB values in in-memory database? Bad idea in general, when you use an in-memory database, it should be small enough.
If you want to connect to the database from another process, you need to start a TCP Server inside of the process that owns the database. org.h2.tools.Server tcp = org.h2.tools.Server.createTcpServer(…); tcp.start(); Another process should use the remote URL to connect to this server. You can also launch a separate H2 Server process and connect to it from both your applications. If you use Hibernate, you can use Hibernate.getLobCreator(…) I guess. Why you want to mix different methods to deal with the database? -- 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/h2-database/c63549c4-8ab6-4d61-854a-9383d0afcc65%40googlegroups.com.
