Skip to Main Content

Java Database Connectivity (JDBC)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

java.sql.SQLException: User not found: NOUSER

843854May 1 2004 — edited May 1 2004
I am trying to connect to an Access database using the hsqldb drivers but i keep getting the error that no user is found can anyone help PLEASE??? im pretty new to JDBC.

Driver d = (Driver)Class.forName("org.hsqldb.jdbcDriver").newInstance();
String URL = "jdbc:hsqldb:"+"db2";
dbConn = DriverManager.getConnection(URL, "nouser", "nopassword");
System.out.println("db Connected...\n");
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 29 2004
Added on May 1 2004
1 comment
270 views