Hi, Accessing in-memory databases from another JVM is possible. You just can't use the database URL jdbc:h2:mem:test. You need to use jdbc:h2:tcp://.../mem:test.
I will change the documentation from "Accessing the same database in this way only works within the same virtual machine and class loader environment." to "Accessing the same database using this URL only works within the same virtual machine and class loader environment." > The description above clearly says that named in-memory databases work > only within the same JVM. It says "... in this way ..." > Is such access possible or not? :) It is possible. > AUTO_SERVER This feature doesn't work with in-memory databases. I will document that. Regards, Thomas -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
