Hi, > 1)Auto_server provides a new access method to embedded mode since in > old embedded mode only one process could possible access the db.
> 2)Mixed mode means starting a server listening on a port along with a > embedded mode enable, while remote access to the db is > possible.Meanwhile,the embedded mode still working as fast as without > server listening. Actually Auto_server is also a mixed mode. 'Mixed mode' can mean two things: (A) start a server manually and then connect to it. (B) AUTO_SERVER=TRUE in which case the server is started automatically. Mixed mode only means: "one application used the database in embedded mode, while another in server mode, at the same time". There are two ways to start the server: one is manually using the API at http://www.h2database.com/javadoc/org/h2/tools/Server.html - the other way to start the server (if it is not already running) is by appending ;AUTO_SERVER=TRUE to the database URL. 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 -~----------~----~----~----~------~----~------~--~---
