0

私の資産フォルダに私のsqlite dbがあります。デシベルは foo.db と呼ばれます エミュレーターまたはデバイスでアプリをテストすると、常にデシベルが存在せず、空のデシベルが作成されたと表示されます。私のデータベースにはデータがロードされており、テストのために電話またはエミュレーターにプッシュしたいと考えています。これが機能しないのはなぜですか?

以下は、データベースが存在するかどうかを確認するアプリのセクションです...しかし、データベースが見つかりません。デバッグ モードで実行しましたが、DB_PATH と DB_NAME の値は正しいのですが、毎回空のデータベースが作成されます。

私は何を見落としていますか?

/**
 * Called when the activity is first created.
 */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.listpage);
    this.myDbHelper = new DataBaseHelper(this);
    try {
        myDbHelper.createDataBase();
    } catch (IOException ioe) {
        throw new Error("Unable to create database");
    }
    try {
        myDbHelper.openDataBase();
    } catch (SQLException sqle) {
        throw sqle;
    }
}

/**
 * Creates a empty database on the system and rewrites it with your own database.
 */
public void createDataBase() throws IOException {
    boolean dbExist = checkDataBase();
    if (dbExist) {
        //do nothing - database already exist
        System.out.println("DB alrady exists  comment this out before your deply");
    } else {
        System.out.println("an empty DB is beng created  comment this out before your deply");
        //By calling this method an empty database will be created into the default system path
        //of your application so we are gonna be able to overwrite that database with our database.
        this.getReadableDatabase();
        try {
            copyDataBase();
        } catch (IOException e) {
            throw new Error("Error copying database");
        }
    }
}


/**
 * Check if the database already exist to avoid re-copying the file each time you open the
 * application.
 *
 * @return true if it exists, false if it doesn't
 */
private boolean checkDataBase() {
    SQLiteDatabase checkDB = null;
    try {
        String myPath = DB_PATH + DB_NAME;
        checkDB = SQLiteDatabase.openDatabase(myPath, null, SQLiteDatabase.OPEN_READONLY);
    } catch (SQLiteException e) {
        //database does't exist yet.
    }

    if (checkDB != null) {
        checkDB.close();
    }
    return checkDB != null ? true : false;
}
4

0 に答える 0