you're right. i was able to solve it. the exception came for the sqlite driver. the JDK's ConnectionManager tried all loaded drivers. all of them returned null (can't connect), except for the one from sqlite, which threw that particular exception. the ConnectionManager, after trying all and none succeeded, re-threw that exception
i had used some wrapper around the h2 connection driver. after removing that magic, all worked fine. On Thursday, November 28, 2013 8:11:29 AM UTC+1, Noel Grandin wrote: > > > > On 2013-11-27 22:45, gonfi wrote: > > > > java.sql.SQLException: invalid database address: > jdbc:h2:file:c:\path\mydb;IFEXISTS=TRUE;ACCESS_MODE_DATA=r > > > > That error message is not coming from H2, so I suspect that your test > framework has a bug somewhere. > -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/h2-database. For more options, visit https://groups.google.com/groups/opt_out.
