1

私のアプリについて: トレーニングのパフォーマンスを保存します - 多くのテーブルを持つ 1 つのデータベース (1 つのテーブルはワークアウトのログ)。日付はテーブルの名前です (例: d2016_08_09 )。ユーザーが「保存ボタン」を押すと、アプリはテーブルの名前を設定します。

public static final String DB_NAME ="db_workout";//name of base
public static  String DB_TABLE ="dateOfWorkout";//name of table
public static final int DB_VER =1;

public static void setDbTable(String dbTable) {
    DB_TABLE = dbTable;
}

public Base(Context context, String name, SQLiteDatabase.CursorFactory factory, int version, String db_table_name) {
    super(context, DB_NAME, null, DB_VER);
    setDbTable(db_table_name);
    System.out.println(DB_TABLE);
}


@Override


public void onCreate(SQLiteDatabase db){
    db.execSQL(
            "create table IF NOT EXISTS "+ DB_TABLE +"("
            + "nr integer primary key autoincrement,"
            + "name text,"
            + "s1 integer,"
            + "s2 integer,"
            + "s3 integer,"
            + "s4 integer,"
            + "s5 integer,"
            + "weight integer);"
            +"");

}

public void addWorkoutPlan(String i, int q, int w, int e, int r, int t, int wt) {
    SQLiteDatabase db = getWritableDatabase();
    ContentValues wartosci = new ContentValues();

    wartosci.put("name", i);
    wartosci.put("s1", q);
    wartosci.put("s2", w);
    wartosci.put("s3", e);
    wartosci.put("s4", r);
    wartosci.put("s5",t);
    wartosci.put("weight",wt);



    db.insertOrThrow(DB_TABLE, null, wartosci);
}
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
    //uzupelnic

}

そして、私が使用するクラスは、ベースに日付を追加します

sNameTable = "d"+sNameTable;
    db= new Base(this,null,null,0,sNameTable);

    bAddDate = (Button) findViewById(R.id.bAddDate);



    bAddDate.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {

            setValues(); // setting values 





                for (int i = 0; i < 1; i++) {

                    db.addWorkoutPlan(
                            tName[0][i].toString(),//nazwa cwiczenia
                            Integer.parseInt(tSeries[0][i].getText().toString()),//1. seria
                            Integer.parseInt(tSeries[1][i].getText().toString()),
                            Integer.parseInt(tSeries[2][i].getText().toString()),
                            Integer.parseInt(tSeries[3][i].getText().toString()),
                            Integer.parseInt(tSeries[4][i].getText().toString()),
                            Integer.parseInt(tWeight[0][i].getText().toString())

                    );
                }

                Context context = getApplicationContext();
                CharSequence text = "Trening dodany";
                int duration = Toast.LENGTH_SHORT;
                Toast toast = Toast.makeText(context, text, duration);
                toast.show();


        }
    });
}

ボタンを押して日付を追加すると、アプリがクラッシュし、AndroidStudio が次のログを取得します。

23190-23190/com.example.konra_000.workoutplan E/SQLiteLog: (1) そのようなテーブルはありません: d2016_08_09

23190-23190/com.example.konra_000.workoutplan E/AndroidRuntime: FATAL EXCEPTION: メイン プロセス: com.example.konra_000.workoutplan、PID: 23190 android.database.sqlite.SQLiteException: そのようなテーブルはありません: d2016_08_09 (コード 1): 、コンパイル中: INSERT INTO d2016_08_09(name,s3,weight,s2,s1,s5,s4) VALUES (?,?,?,?,?,?,?)

4

1 に答える 1

0

When you make some changes to SQLite Database, sometimes the changes can not be seen because your logic to create a DB is not optimized.

So, probably, there is an older version of the database on your device, just uninstall and reinstall the app.

于 2016-08-09T22:50:28.967 に答える