Sqlite jdbc Relative Eclipse Database Path

I am trying to use Sqlite, jdbc under Eclipse Luna and Windows 7.

Everything works fine when I use the absolute path to the Sqlite database, but when the relative path is used, I get this error:

java.sql.SQLException: [SQLITE_ERROR] SQL error or missing database.

I spent some time on this problem, and the answer is: Yes, you can use a relative path with jdbc connection. However, this does not work for me.

My code is:

package PortiaMoxy;
import static net.mindview.util.Print.*;
String inPath; // incoming file
String outPath; // converted file from incoming file
public File() {
    // Connect to Sqlite db
    Connection c = null;
    Statement stmt = null;
    ResultSet rs = null;
    try {
        Class.forName("org.sqlite.JDBC");
        // 
        // This connection works fine
        // 
        //c = DriverManager.getConnection("jdbc:sqlite:/JavaProjects/workspace/Polymorphism/sources/PortiaMoxy/moxyimport.sqlite");


        //
        // This connection doesn't work. ???
        //
        c = DriverManager.getConnection("jdbc:sqlite:moxyimport.sqlite");

        c.setAutoCommit(false);
        print("File(): Opened database successfully.");
        stmt = c.createStatement();


        String query = "select ID \"id\", VALUE \"value\"";
        query += "from infiles;";

        rs = stmt.executeQuery(query);

        if (!rs.isBeforeFirst() ) {    
             System.out.println("No data"); 
            } 


        while(rs.next()) {
            String id = rs.getString(1);
            String value = rs.getString(2);
            print("   ID = " + id + " Value = " + value);
        } // end of while
        rs.close();
        stmt.close();
        c.close();



    } // end of try
    catch (SQLException ex) {
        print(ex.getClass().getName() + ": " + ex.getMessage());
        System.exit(0);
    }
    catch (Exception e ) {
        print(e.getClass().getName() + ": " + e.getMessage());
        System.exit(0);
    }



} // end of class

public int convert() {
    print(what());

    print("Generic convert");
    return 0;

}

public String what() {
    return "File";
}

}
+4
source share
3 answers

Put your database in the following folder and try again with the relative path:

/ JavaProjects / Workspace / Polymorphism

That should work.

+1
source

sqlite jdbc Eclipse

1)

2) (x) =

3)

4)

5)

6)

//Import the database in your project workspace like 'Demo.db'
Connection conn = null;

public static void connect()
{
    File dbfile=new File(".");
    String url="jdbc:sqlite:"+dbfile.getAbsolutePath()+"\\Demo.db";
    System.out.println(url);
    try {
          Class.forName("org.sqlite.JDBC");
          conn = DriverManager.getConnection(url);

    } catch ( Exception e ) {
          System.err.println( e.getClass().getName() + ": " + e.getMessage() );
        }

    System.out.println("Connection successfully");
}//end connection()
+1

, jdbc .

, , .

, SQLite

0
source

Source: https://habr.com/ru/post/1599521/


All Articles