SQLite插入空例外?

时间:2011-06-19 18:32:40

标签: java android sql database nullpointerexception

由于某些原因,我的代码在尝试插入表时返回NullException?我非常困惑。

try{
        if(contactsh.selectAll().size() > 0){
            for(int i = 0; i < contactsh.selectAll().size() - 1; i++){
                names[i] = contactsh.selectAll().get(i);
            }
        } else {

        }
    } catch(Exception e){
        contactsh.insert("Example"); //ERROR IS HERE
        timeh.insert("20:20");
        dateh.insert("06/27/27");
        txth.insert("1-555-555-5555");
        Log.w("initiate contacts error: ", e.toString());
    }

错误:

06-19 11:29:55.486: ERROR/AndroidRuntime(9482): Caused by: java.lang.NullPointerException
06-19 11:29:55.486: ERROR/AndroidRuntime(9482):     at com.laytproducts.timexter.mainAct.onCreate(mainAct.java:57)
06-19 11:29:55.486: ERROR/AndroidRuntime(9482):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
06-19 11:29:55.486: ERROR/AndroidRuntime(9482):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2701)
06-19 11:29:55.486: ERROR/AndroidRuntime(9482):     ... 11 more

这是我的类中的DatabaseHelper的插入方法:

public long insert(String name){
    this.insertStmt.bindString(1, name);
    return this.insertStmt.executeInsert();
}

如果你需要看我的全班,我会非常乐意在这里发表。

1 个答案:

答案 0 :(得分:2)

可能需要查看更多代码,但我希望this.insertStmt为空或contactsh为空。