Hi, I figure what i'm trying to do isn't supported but i'll proceed with my > question anyway: >
You are right this is not supported. I create and start my DB in auto mixed mode: > jdbc:h2:/home/me/TestDB;AUTO_SERVER=TRUE;AUTO_SERVER_PORT=9091 > > Then i want to connect to the server which is running (have tested this, > can see the thread alive in my debugger etc) > jdbc:h2:tcp://myDBServer:9091/home/me/TestDB;IFEXISTS=TRUE > You should use the same URL as above instead: jdbc:h2:/home/me/TestDB;AUTO_SERVER=TRUE;AUTO_SERVER_PORT=9091 This is documented. 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.
