There's a bit of information in the Tutorial at: http://www.h2database.com/html/tutorial.html#using_server
To see the Server syntax: java -cp h2*.jar org.h2.tools.Server -? So for your server situation try: java -cp h2*.jar org.h2.tools.Server -tcp -tcpAllowOthers -tcpSSL Overview of connection URL syntax: http://www.h2database.com/html/features.html#database_url >From the H2 console on your client you could try URL: jdbc:h2:ssl://servernamehere/path/to/dbname -- 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.
