Hi, > I want to build a stand alone server (one big jar holding my pljava classes > and a java Main class which will start the tcp server, the webserver and > queing deamon, which is part of my application).
Do you actually need the server mode? Do you have a client application that connects to the database using the JDBC driver, and this client application doesn't run in the same process as the server? If not, using the embedded mode would be much simpler and much faster. > Starting the server doesn't open a database - databases are opened as soon as > a client connects.", this makes absolutly no sense to me It's a bit similar to staring a web server doesn't read any *.html files. The files are read if and when there is a client requesting such a file. The H2 TCP server works in a similar way (even thought there is a difference in how long the files stay open). A server can concurrently open multiple (any number of) databases. 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.
