0

私のアプリには、データベース内のすべてが発生するdbhelperクラスがあり、onUpgrade(SQLiteDatabase db、int oldVersion、int newVersion)を使用する必要があることはわかっていますが、アプリケーション全体を更新するのではなく、インターネットコールで、Webテーブルのバージョンを変更して、アプリにテーブルをドロップし、新しい情報を取得できるように再構築したことを確認するだけです。これが私のコードです:

私のbdヘルパーで:

public class CuestionarioHelper extends SQLiteOpenHelper {

private static String DB_PATH = "/data/data/myapp.VerCuestionarioEspanol_copy/databases/";
private static final String DB_NAME="cuestionario.db";
private static final int SCHEMA_VERSION=1;
private SQLiteDatabase myData; 
public CuestionarioHelper(Context context) {
    super(context, DB_NAME, null, SCHEMA_VERSION);
}   
@Override
public void onCreate(SQLiteDatabase db) {
    db.execSQL("CREATE TABLE Version (_id INTEGER PRIMARY KEY AUTOINCREMENT, version TEXT);");
    db.execSQL("CREATE TABLE Cuestionario (_id INTEGER PRIMARY KEY AUTOINCREMENT, pregunta TEXT, respuesta TEXT);");
    }
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
    db.execSQL("DROP TABLE IF EXISTS " + "Version");
    db.execSQL("DROP TABLE IF EXISTS " + "Cuestionario");
    onCreate(db);
}

そして私のmainActivityで:

private CuestionarioHelper db = null;

 @Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

   db = new CuestionarioHelper(this);

// here in a  class DownloadFileAsync extends AsyncTask<String, String, String> 
  I download the version of the table in the web and if is different than the one 
  already in the db then it calls the table complete information to replace the one 
  in the apps db.

//Here I verify what table version I have so I can add to a non existing table, 
  do nothing if both versions are the same or replace the bd table if they are different.

public void verficar(){

verify = db.getTableCount();
if(verify == 0){
    tvVersion.setText("Version nueva "+Version.get(0).version);
    // download the table information and added to the db
}else{
    if(versionEntrada.equals(db.getVersion())){
        tvVersion.setText("Version ya existe "+db.getVersion());
           //version is the same do nothing
    }else{
        int oldVersion = Integer.parseInt(db.getVersion());
        int newVersion = Integer.parseInt(versionEntrada);
        db.onUpgrade(db, oldVersion, newVersion);//here is where I don't know 
                                                    //how to call it, this is not working!
        // download the table information and added to the db
        tvVersion.setText("Version actualizada "+Version.get(0).version);
    }
}
}

dbでは、Versionテーブルはテーブルのバージョンを格納する場所です。または、dbバージョンの場合もあります。これは、Webテーブルのバージョンと比較するための1つの数値であるため、1つの列と1つの行しかありません。

4

1 に答える 1

2

SCHEMA_VERSIONnot finalを作成し、このバージョンをパラメーターとして渡す必要があります。

これらの行を変更します

private static final int SCHEMA_VERSION=1;
public CuestionarioHelper(Context context) {
    super(context, DB_NAME, null, SCHEMA_VERSION);
}   

to(SCHEMA_VERSIONが削除されていることに注意してください)

public CuestionarioHelper(Context context, int version) {
    super(context, DB_NAME, null, version);
}   
于 2012-09-27T17:00:56.633 に答える