hsqldb_1_8_0_1 I have created table using runManager.bat via "create cached table" and tables are created successfully.
Now when I try to access the database via JDBC using the following code Class.forName("org.hsqldb.jdbcDriver"); String url = "jdbc:hsqldb:mydb/mydb"; con= DriverManager.getConnection(url, usrName, pas); System.out.println ("Connection is created successfully");
and try to insert the data it throwing an exception java.sql.SQLException: Table not found in statement [SELECT * FROM Users]
After then i tried to recreate the using JDBC, even in that case tables being created successfully, but the error is there.
Vijay Nivas
Greenhorn
Joined: Nov 01, 2007
Posts: 12
posted
0
hello,
I am also having same problem.How did you get rid of this exception?
thanks, nivas.
Paul Campbell
Ranch Hand
Joined: Oct 06, 2007
Posts: 338
posted
0
does your web app's login connection the same as the schema owner?