将ArrayList <string>添加到SQLite DB </string>

时间:2014-02-14 12:52:31

标签: java sqlite arraylist

我正在编写我的第一个程序并尝试使用JDBC驱动程序sqlite-jdbc-3.7.2.jar将数据与ArrayList(从CSV数据库)传输到SQLite数据库。 我已经阅读了tutorials来自SQLite和Java初学者以及有关stackoverflow(Link 1Link 2)的问题的不同答案,我最终可以创建一个包含表和变量列的数据库(数据类型:文本)。但是当我尝试使用此方法将ArrayList中的记录添加到我的testtable时:

/**
 * Add record from ArrayList<string> to table
 * @param selectTable (name of table)
 * @param line (List with record for table)
 */
public void addRecord (String selectTable, ArrayList<String> line){
    try{
        //connect to database
        connection = new DBconnect(pathDataBase);
        database = connection.getConnection();

        //create SQL Statement
        ArrayList<String> columnNames = new ArrayList<String>();
        columnNames = getColumnList(selectTable); //call method to get all columnNames from selected table

        String sSQL = "INSERT INTO " + selectTable + "("; //update statement (string sSQL)

        //disperse ArrayList<string> columnNames in parts to add to the statement(string sSQL)
        int i = 0;
        for (i=0; i<columnNames.size(); i++){
            sSQL = sSQL + columnNames.get(i);
            if (columnNames.size() + 1 > i+2){
                sSQL = sSQL + ", "; //update statement(string sSQL)
            }//end if
        }// end for
        sSQL = sSQL + ") VALUES("; //update statement(string sSQL)

        //disperse ArrayList<string> line in parts to add to the statement(string sSQL)
        i=0;
        for (i=0; i<columnNames.size(); i++){
            sSQL = sSQL + line.get(i); //add record per line in columns
            if (columnNames.size() + 1 > i+2){
                sSQL = sSQL + ", ";
            }//end if
        }//end for
        sSQL = sSQL + ");";
        System.out.println(sSQL);

        Statement statement = database.createStatement();
        System.out.println("created statement");
        statement.executeUpdate(sSQL);
        System.out.println("executed Update");

        statement.close();
        database.close();
        //catch exception
    } catch ( Exception e ) {
        System.err.println( e.getClass().getName() + ": " + e.getMessage() );
        System.exit(0);
    }//end try/catch
}//end method

我得到以下异常描述:

Opened database successfully
INSERT INTO Testtable(Test1, Test2, Test3) VALUES(Hallo1, Hallo2, Hallo3); //(ArrayList<string> columnNames) (ArrayList<string> line)
created statement
java.lang.NullPointerException: null

我认为我的String“sSQL”中的某些内容必定是错误的。

有人知道我必须改变什么才能使其有效吗? 我不能在“文本”列中写入数据类型“string”吗?

我希望我描述我的问题是可以理解的,并提出正确的问题。

非常感谢提前。 :)

@all:哦,伙计,我偶然发现了自己的愚蠢。我打开了一个与数据库的连接并调用一个方法,该方法还打开一个连接并关闭它。当然现在我无法执行语句,因为我的数据库已关闭。谢谢纳伦你的时间!

1 个答案:

答案 0 :(得分:0)

像这样使用循环...如果传递像Test0 Test1 Test2 Test3这样的输入,就会生成像这样的输出

 Test0,Test1,Test2,Test3

所以

for(int i=0;i<columnNames.size();i++)
    {
        str=str+columnNames.get(i);
        if(!(i+1==columnNames.size()))
        {
            str=str+",";
        }

    }

和第二个循环

 for (i=0; i<line.size(); i++){
                sSQL = sSQL + line.get(i); //add record per line in columns
                if(!(i+1==line.size()))
                {
                    str=str+",";
                }
            }

你在构建时在查询中插入“?”(placeHolders)..如果是这样你应该使用PreparaedStatement ps然后ps.setInt()方法来填充其中的正确值然后你应该executeUpdate()..如果你想使用prepareStatement,你可以检查http://www.mkyong.com/jdbc/jdbc-preparestatement-example-insert-a-record/