sqlite jdbc Eclipse数据库的相对路径

时间:2015-07-24 13:27:11

标签: java eclipse sqlite jdbc

我正在尝试使用Eclipse Luna& s下的Sqlite,jdbc。 Windows 7。

当我使用Sqlite数据库的绝对路径时,一切正常,但是当使用相对路径时,我收到此错误:

  

java.sql.SQLException:[SQLITE_ERROR] SQL错误或缺少数据库。

我花了一些时间谷歌搜索这个问题,答案是:是的你可以使用相对路径与jdbc连接。但它对我不起作用。

我的代码:

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";
}

}

3 个答案:

答案 0 :(得分:2)

将您的数据库放在以下文件夹中,然后使用相对路径重试:

<强> / JavaProjects /工作区/多态性

这应该有效。

答案 1 :(得分:2)

  

使用Eclipse

在sqlite jdbc数据库连接中设置相对路径

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()

答案 2 :(得分:0)

问题是如果没有完整路径,jdbc将尝试在当前路径中找到数据库。

我不完全确定,但我认为这应该是项目的根源。

因此,您可以将SQLite文件放在此目录中或使用路径