Where can I see the HSQL database and tables
问题 I have downloaded a hsqldb.jar and I set to project buildpath,then next I wrote the program Class.forName("org.hsqldb.jdbc.JDBCDriver"); Connection conn = DriverManager.getConnection( "jdbc:hsqldb:mem:mydb", "SA", ""); String bookTableSQL = "create table MY_TABLE ("+ " TITLE varchar(256) not null primary key,"+ " AUTHOR varchar(256) not null"+ ");"; Statement st = conn.createStatement(); st.execute(bookTableSQL); System.out.println(st); String sql = "INSERT INTO MY_TABLE " + "VALUES ('Mahnaz'