Hi, > I have a question about the embedded mode: > How many applications can read/write the db files at same time?
You can have multiple connections. By default access to the database is serialized however. To disable this, call SET MULTI_THREADED 1 - see http://www.h2database.com/html/grammar.html#setmultithreaded To enable the multi-version concurrency, see http://www.h2database.com/html/advanced.html#mvcc 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 -~----------~----~----~----~------~----~------~--~---
