我正在尝试使用sqlite数据库来存储我的应用程序的一些数据。我的dbhelper类中有这个(它扩展了sqliteopenhelper)

// Database creation sql statement
private static final String DATABASE_CREATE = "create table "
        + jarsTable + "( "+colID+" integer primary key autoincrement, "+colName+" varchar(100), " +
        colGoal+" real not null, "+colBal+" real not null, "+colCurr+" varchar(100));";

public DbHelper(Context context) {
    super(context, dbName, null, DATABASE_VERSION);
}

@Override
public void onCreate(SQLiteDatabase database) {
    database.execSQL(DATABASE_CREATE);
}

我把这个放在我的数据源类中
private Jar cursorToJar(Cursor cursor) {
    Jar myJar = new Jar();
    myJar.setId(cursor.getLong(0));
    myJar.setName(cursor.getString(1));
    myJar.setBalance(cursor.getDouble(2));
    myJar.setGoal(cursor.getDouble(3));
    myJar.setCurrency(cursor.getString(4));
    return myJar;
}

当到达上面的myjar.setname行时,我得到了问题标题中提到的错误,这个错误会导致应用程序崩溃。我真的有点困惑,我哪里出错了,我得到了一个字符串,我的表在第1列存储了一个字段,我想,所以……是啊。提前谢谢你的帮助
编辑:这是我的人口统计方法:
public Jar createJar(String name, double goal, String currency) {
    ContentValues values = new ContentValues();
    values.put(DbHelper.colName, name);
    values.put(DbHelper.colGoal, goal);
    values.put(DbHelper.colCurr, currency);
    values.put(DbHelper.colBal, 0.0);
    long insertId = database.insert(DbHelper.jarsTable, null,
            values);
    Log.d("Insert ID:", ""+insertId);
    // To show how to query
    Cursor cursor = database.query(DbHelper.jarsTable,
            allColumns, DbHelper.colID + " = " + insertId, null,
            null, null, null);
    cursor.moveToFirst();
    return cursorToJar(cursor);
}

最佳答案

始终使用游标的getColumnIndex()方法访问列。就像这样:

myJar.setName(cursor.getString(cursor.getColumnIndex(colName)));

并不是说这绝对是问题所在——因为您还没有展示Cursor是如何填充的——但很可能是这样。

09-12 12:50