Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I created a new database using Java DB named "Test", and I tried to create a connection using java DB Embedded driver, but when I enter Test in database name and add user name and pass and press OK, an error appears:

"Unable to add connection. cannot establish a connection to jdbc.derby.Test using org.apache.derby.jdbc.EmbeddedDriver (database 'Test' not found)"

Why do I get this message?

then, when I wrote my code

   String conStr = "jdbc:derby:Test";
    String driver2 = "org.apache.derby.jdbc.EmbeddedDriver";
    try {
        Class.forName(driver2);
        System.out.println("driver");
    } catch (ClassNotFoundException e1) {
        e1.printStackTrace();
    }
    try {
        Properties props = new Properties();
        props.put("user", "sahar");
        props.put("password", "123456"); 
        //Connection conn = DriverManager.getConnection(conStr);
        Connection conn = DriverManager.getConnection(conStr,props);
        System.out.println("connect ");
    } catch (SQLException e) {
        e.printStackTrace();
    }

it throws an exception "Database 'Test' not found"

share|improve this question
Try to gather more information by following these instructions: wiki.apache.org/db-derby/UnwindExceptionChain – Bryan Pendleton Oct 22 '11 at 21:25

closed as too localized by casperOne Feb 1 '12 at 13:52

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

Without seeing code it's hard to guess, but perhaps you need create=true on your connection string.

final String connectionURL = "jdbc:derby:" + dbName + ";create=true";

(I pulled this copy and paste out of an app I have that uses an embedded database.)

share|improve this answer
but i don't want to create the database it is already exist and I don't talk about any code, I make that using netbeans wizard – sasola Oct 21 '11 at 22:22
and when I write my code to connect to this database it throws and exception Database "Test" not found – sasola Oct 21 '11 at 22:26
Well then, you need to change your working directory. Check your working directory against the physical directory of the database. – corsiKa Oct 21 '11 at 22:49
but it is in the default directory , how to change the directory? – sasola Oct 21 '11 at 22:52
C:\Users\m\.netbeans-derby this where Test database exists – sasola Oct 21 '11 at 22:54
show 2 more comments

If indeed you have created a local database, try pointing to the absolute file-name instead of the relative one.

Unix:
jdbc:derby:/srv/databases/Test

Windows:
jdbc:derby:c:/databases/Test

Better way might be to access a database via a Derby network server

share|improve this answer
but this is the absolute path C:\Users\m\.netbeans-derby\Test. but it throws an exception "Failed to start database 'c:\Users\m\.netbeans-derby\Test' " – sasola Oct 21 '11 at 23:21
Watch out for backslashes. In Java, you probably have to double the backslashes. – Bryan Pendleton Oct 22 '11 at 0:16
@BryanPendleton, I use jdbc:derby:c:\\Users\\m\\.netbeans-derby\\Test but it throws an exception "Failed to start database 'c:\Users\m\.netbeans-derby\Test' " why? – sasola Oct 22 '11 at 9:32
blackslashes work only if you call derby from command line, in code you must use forward slashes try something like: getConnection("jdbc:derby://localhost/c:/Users/m/.netbeans-derby/Test") – user353283 Oct 22 '11 at 12:08
@Hypnos a new exception is thrown java.sql.SQLException: No suitable driver found for jdbc:derby://localhost/c:/Users/m/.netbeans-derby/Test – sasola Nov 15 '11 at 21:44
show 2 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.