I am looking at allowing more than one (java) application to view my
H2 database, as i saw on the website, there are two options to do
this.
I tried adding these lines to my code:

-------------------
import org.h2.tools.Server;
...
// start the TCP Server
Server server = Server.createTcpServer(args).start();
...
// stop the TCP Server
server.stop();
------------------
This resulted in the application that has them not to throw any
errors, but the others were still saying:
"
Org.h2.jdbc.JdbcSQLException: Error opening database: “Lock file
recently modified” [8000-126]

"

In summary would I need to put those server code lines in each of my
applications accessing the database?
-- 
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.


Reply via email to