程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> sqlite-SQLite不能識別插入

sqlite-SQLite不能識別插入

編輯:編程綜合問答
SQLite不能識別插入

想要在表單中新加入一行然後確認是否加入正確,等到查詢的時候,程序就崩潰了。

addNewGame(1);

Cursor cursor2 = db.query(myDBOpenHelper.GAMES_TABLE, new String [] {"MAX("+GAME_COLUMN+") AS GC"}, null, null, null, null, null);
System.err.println("made it this far");     
String temp = cursor2.getString(cursor.getColumnIndex("GC")); //crash!!!
System.err.println("didn't get here);


private static void addNewGame(int g) {
        ContentValues newValues = new ContentValues();
    SQLiteDatabase db = DBOpenHelper.getWritableDatabase(); 
    newValues.put(GAME_COLUMN, g);
    newValues.put(CIV_COLUMN, "");
    db.insert(myDBOpenHelper.GAMES_TABLE, null, newValues);
}

thread exiting with uncaught exception

創建表單的代碼:

private static final String GAMES_CREATE =  "create table " +
            GAMES_TABLE + " (" + KEY_ID +
            " integer primary key autoincrement, " +
            GAME_COLUMN + " text not null, " +
            CIV_COLUMN + " text);";
db.execSQL(GAMES_CREATE);

最佳回答:


db.query(myDBOpenHelper.GAMES_TABLE, new String [] {"MAX("+GAME_COLUMN+") AS GC"}, null, null, null, null, null);

先不論查得出查不出,但看這樣的寫法就值得推敲!

首先,android給的這個query方法,是為了方便我們查詢使用,其中第二個參數代表列名。你這樣的寫法是否可以理解為列名就為:MAX("+GAME_COLUMN+") AS GC,而你創建表的時候,列名可只有GAME_COLUMN,並沒有MAX

如果你想查詢最大值,最好使用sql語句查詢,而非這個函數

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved