0

データベースに挿入しようとすると、以下にリストされているエラーが表示され続けます。

08-14 11:50:21.455: E/SQLiteLog(27688): (1) table exercises has no column named reps
08-14 11:50:21.495: E/SQLiteDatabase(27688): Error inserting reps=4 title=  BarBell Curls weight=4 notes=db date=August-14-2013
08-14 11:50:21.495: E/SQLiteDatabase(27688): android.database.sqlite.SQLiteException: table exercises has no column named reps (code 1): , while compiling: INSERT INTO exercises(reps,title,weight,notes,date) VALUES (?,?,?,?,?)

これが私が作成ステートメントのために持っているものです:

//データベース作成SQL文

private static final String DATABASE_CREATE = "create table " + DATABASE_TABLE + " (" + KEY_ROWID + " integer primary key autoincrement, "
                                            + KEY_TITLE + " text not null, "
                                            + DATE_SELECTED + " text not null, "
                                            + WEIGHT_INPUT + " text not null, "
                                            + REPS_INPUT + " text not null, "
                                            + KEY_BODY + " text not null" + ");";

// 行を挿入するメソッド

public long createExercise(String title, String date, String weight, String reps, String body)
{
    ContentValues initialValues = new ContentValues();
    initialValues.put(KEY_TITLE, title);
    initialValues.put(DATE_SELECTED, date);
    initialValues.put(WEIGHT_INPUT, weight);
    initialValues.put(REPS_INPUT, reps);
    initialValues.put(KEY_BODY, body);
    return myDatabase.insert(DATABASE_TABLE, null, initialValues);
}

私は単純なものが欠けていることを知っています。どんな助けでも大歓迎です! 乾杯

4

1 に答える 1

-1

SQLite エラーは、「表の演習には担当者という名前の列がありません」と述べています。

于 2013-08-14T19:38:34.890 に答える