Thanks Thomas... that really helps!! I obviously never really understood what that "~" meant in the URL!!
On Sep 29, 1:43 pm, "Thomas Mueller" <[EMAIL PROTECTED]> wrote: > Hi, > > > Thomas replied... and this does work. The problem was that I was > > using a JDBC url of the form: > > > jdbc:h2:~/DB_NAME_HERE > > The ~ stands for the home directory. You can also use it in the server > mode: jdbc:h2:tcp://localhost/~/DB_NAME_HERE > > What you probably want is: > > jdbc:h2:DB_NAME_HERE > or > jdbc:h2:file:DB_NAME_HERE > > > does this hurt performance for embedded H2 > > database servers? > > Yes, see the performance comparison on the home page (www.h2database.com). > > 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 -~----------~----~----~----~------~----~------~--~---
