2016-07-26 3 views
0

이미 게시 된 애플리케이션이 있습니다. DATABASE_VERSION을 추가하지 않았습니다.onUpgrade Sqlite Android에서 데이터베이스 다시 만들기

는 이제 업그레이드 및 새 데이터베이스 파일을 복사 내 테이블 (~ 100 행)

임 삭제 데이터베이스의 3에 새로운 행이 데이터베이스를 업데이트합니다.

데이터베이스 파일이 자산에 있습니다. 하지만 응용 프로그램을 업그레이드하면 작동이 멈 춥니 다. 사실 더빙 앱은 정상적으로 작동하지만 릴리스 APK가 작동을 멈 춥니 다.

public void createDataBase() { 
    ... 
    this.getReadableDatabase(); 
    try { 
     copyDataBase(); 
    } catch (IOException e) { 
     throw new Error("Error copying database"); 
    } 
} 

this.getReadableDatabase() 읽기에 대한 데이터베이스를 엽니 다

여기에 내가 여기 당신의 문제라고 생각 내 코드

private static String DB_PATH = "/data/data/my.package.name/databases/"; 

private static String DB_NAME = "file.sqlite"; 
private static final int DATABASE_VERSION = 2; 

private SQLiteDatabase myDataBase; 

private final Context myContext; 
* 
* @param context 
*/ 
public DataBaseHelper(Context context) { 

    super(context, DB_NAME, null, DATABASE_VERSION); 
    this.myContext = context; 
} 

/** 
* Creates a empty database on the system and rewrites it with your own database. 
*/ 
public void createDataBase() { 

    boolean dbExist = checkDataBase(); 

    if (dbExist) { 
//do nothing - database already exist 
    } else { 

//By calling this method and 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; 
} 

/** 
* Copies your database from your local assets-folder to the just created empty database in the 
* system folder, from where it can be accessed and handled. 
* This is done by transfering bytestream. 
*/ 
private void copyDataBase() throws IOException { 

//Open your local db as the input stream 
    InputStream myInput = myContext.getAssets().open(DB_NAME); 

// Path to the just created empty db 
    String outFileName = DB_PATH + DB_NAME; 

//Open the empty db as the output stream 
    OutputStream myOutput = new FileOutputStream(outFileName); 

//transfer bytes from the inputfile to the outputfile 
    byte[] buffer = new byte[1024]; 
    int length; 
    while ((length = myInput.read(buffer)) > 0) { 
     myOutput.write(buffer, 0, length); 
    } 

//Close the streams 
    myOutput.flush(); 
    myOutput.close(); 
    myInput.close(); 

} 

@Override 
public synchronized void close() { 

    if (myDataBase != null) 
     myDataBase.close(); 

    super.close(); 

} 

@Override 
public void onCreate(SQLiteDatabase db) { 

} 

@Override 
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { 
    myContext.deleteDatabase(DB_NAME); 
    Toast.makeText(myContext,"done",Toast.LENGTH_SHORT).show(); 
    createDataBase(); 
} 

답변

0

입니다. 그런 다음 copyDataBase()asset 파일을 작성하십시오. 그러나 파일을 읽기 위해 열었으므로 쓸 수없고 오류가 발생합니다.

그래서, 나는 다음과 같이 createDataBase()를 업데이트해야합니다 생각 : 당신이 이전 데이터베이스의 데이터에 대해 상관하지 않는 경우

public void createDataBase() { 
    boolean dbExist = checkDataBase(); 
    if (dbExist) { 
     //do nothing - database already exist 
    } else { 
     SQLiteDatabase checkDB = getReadableDatabase(); 
     checkDB.close(); 
     try { 
      copyDataBase(); 
     } catch (IOException e) { 
      throw new Error("Error copying database"); 
     } 
    } 
} 
+0

죄송합니다. 하지만 작동하지 않습니다. 답변 해주셔서 감사합니다 –

0

, 당신은 업그레이드 또는 버전의 모든 형태의 작업을 수행 할 필요가 없습니다. 파일 이름을 변경하기 만하면됩니다. 따라서 새 APK가 새 파일을 만들고 원하는 경우 언제든지 이전 파일을 삭제할 수 있습니다.

SQLiteAssetHelper은 복사물을 도울 수 있습니다.

관련 문제