我想實現下面的代碼:
String updateQuery ="INSERT INTO MAAccounts(userId, accountId, accountType, accountName, parentAccountId ) VALUES(?, ?, ?, ?, ?)";
Cursor c = mDb.rawQuery(updateQuery, new String[]{
stringToDB(account.userId),
integerToDB(account.accountId).toString(),
integerToDB(account.accountType.getValue()).toString(),
stringToDB(account.accountName),
integerToDB(account.parentAccountId).toString(),
});
現在 parentAccoudId (Type int )的初始值是 null。實際上是把null轉化為 to.String。
當我運行它時,給出空指針的錯誤。
我想在數據庫中存儲null值,如何實現?
你可以使用android 提供的insert語句,使用
ContentValues values = new ContentValues();
values.put("key", Object);
的方式,你就不用關心Object是否為空的情況了,
或者你自己手動判斷下Object是否為null,不等於null的情況在調用toString(),否則直接賦值null.