Hi, > I can not connect to DB using [jdbc:h2:tcp://localhost/C: > \myh2;;MODE=MSSQLServer] from Coldfusion Admin.
Why not? Do you get an error message? If yes, what is it? Did you start the server? > I can connect using the following Connection string > > jdbc:h2:file:C:\myh2;MODE=MSSQLServer but I can not access user > defined tables , I can access Information_schema. When you created the tables, are you sure you also use this database URL? Usually the problem with missing tables is that a relative path was used (relative to the current working directory), which results in multiple databases. But here you have used an absolute path, which should be fine. 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.
