Hi, > However, it is opened in embedded mode.
The H2 TCP server itself opens the database in embedded mode, that's true. But if you use jdbc:h2:tcp:... then _you_ didn't open in server mode, not embedded mode. > I get this error when I try to > connect with another client: > > Database may be already in use: "Locked by another process". Yes, that means the database was already open. You need to close that other connection first. 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.
