Hi, > The database URL is jdbc:h2:~/test and it is stored in the user > directory. The problem is when I run my application, it runs as if the > table was created and data has been stored. Yet, when I double-click > on h2*.jar to bring up the console, the table cannot be found.
Does your application and the H2 Console run using different users? In that case it would be two databases (one for each user). Could you try using an absolute directory name? For example jdbc:h2:/data/h2/test 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.
