您好我正在使用HSQL数据库,在该数据库中我正在使用In Memory concept.I编写了以下用于创建数据库和表的代码。
Class.forName("org.hsqldb.jdbc.JDBCDriver");
Connection conn = DriverManager.getConnection(
"jdbc:hsqldb:mem", "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 ('arjun', 'Fatma')";
st.executeUpdate(sql);
System.out.println(st);
System.out.println("Inserted records into the table...");
在我的项目文件夹中自动创建4个文件
1)mem.lck
2)mem.testDocument
3)mem.properties
4)mem.script
Q1)这些文件中哪一个是我的数据库?
Q2)如何查看创建的数据库和表?
任何人都有想法请帮帮我..