Hi, > jdbc:h2:mem:;MULTI_THREADED=1
This will create a separate database for each connection. Is this what you want? In that case you can only have one connection per database. See also http://www.h2database.com/html/features.html#database_url and http://www.h2database.com/html/features.html#memory_only_databases If you want to share the same database, you need to give it a name as in: jdbc:h2:mem:test1;MULTI_THREADED=1 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 -~----------~----~----~----~------~----~------~--~---
