I want to use HyperSQL as an in-memory database for integration tests of a Java - JDBC application.
If I try the following:
Properties props = new Properties();
props.put("user", "sa");
props.put("password", "");
Class.forName("org.hsqldb.jdbcDriver");
Connection cn = DriverManager.getConnection("jdbc:hsqldb:mem://localhost", props);
Statement st = cn.createStatement();
st.executeUpdate("Insert into foo (bar) values (10);");
I get:
java.sql.SQLException: Table not found: foo in statement [Insert into bar]
I thought there was a way for HSQL to dynamically generate the tables when used as an in-memory database, but I can't seem to find it in the documentation.
fooin your database? how can it know schema of it if it doesn't exist already? – ahmet alp balkan Jul 14 '11 at 17:27