Hi, > We are using H2 database in embedded mode in our application. While > our application inserts some data into the H2 database tables, I want > to see the contenets of that table ( something like select * from > table). In this case how can I access the console and execute the > query and view the results.
There are multiple solutions. One is to use AUTO_SERVER, another is to start a TCP server or H2 Console in your application: http://h2database.com/html/features.html#auto_mixed_mode http://h2database.com/html/tutorial.html#using_server http://h2database.com/javadoc/org/h2/tools/Server.html#startWebServer_Connection 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.
