2011-12-23 92 views
1

我正在使用我已預先創建的嵌入式sqlite數據庫在android上開發應用程序。 在我的設備(HTC Wildfire)上部署應用程序時,我從assets文件夾中檢索現有數據庫並讀取數據庫中的數據。在這一點上一切都很好。 我面臨的問題是關於我在數據庫上進行的所有操作(如添加,編輯或刪除)不起作用的事實。這似乎是數據庫處於只讀模式,但選擇操作正常,我得到我的列表顯示。 請,我需要你的建議!無法讀取部署在設備上的SQLite數據庫

請參見下面的代碼,我使用創建數據庫:

public class DatabaseHelper extends SQLiteOpenHelper { 

private static final String DATABASE_NAME = "mydb.sqlite"; 
private static final int DATABASE_VERSION = 1; 
private static String DATABASE_PATH = ""; 

public DatabaseHelper(Context context) { 
    super(context,DATABASE_NAME,null,DATABASE_VERSION);  
    try { 
     copyDataBase(context); 
    } catch (IOException e) { 
     // TODO Auto-generated catch block 
     e.printStackTrace(); 
    }  
    DATABASE_PATH = context.getDatabasePath(DATABASE_NAME).getAbsolutePath(); 
} 

private void copyDataBase(Context context) throws IOException{  
    //Open your local db as the input stream 
    InputStream input = context.getAssets().open(DATABASE_NAME);   
    //Open the empty db as the output stream 
    OutputStream output = new FileOutputStream(DATABASE_PATH); 
    //transfer bytes from the input file to the output file 
    byte[] buffer = new byte[1024]; 
    int length; 
    while ((length = input.read(buffer))>0){ 
     output.write(buffer, 0, length); 
    } 
    //Close the streams 
    output.flush(); 
    output.close(); 
    input.close(); 
} 

@Override 
public void onCreate(SQLiteDatabase db) {  
    db = SQLiteDatabase.openDatabase(DATABASE_PATH, null, SQLiteDatabase.OPEN_READWRITE); 
} 

@Override 
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {  
    Log.w(DatabaseHelper.class.getName(), "New version : " + newVersion); 
    db.execSQL("DROP TABLE IF EXISTS person"); 
    db.execSQL("DROP TABLE IF EXISTS destiny");  
    db.execSQL("DROP TABLE IF EXISTS intention"); 
    db.execSQL("DROP TABLE IF EXISTS innerself"); 
    onCreate(db); 
} 

}

問候。

+0

有什麼錯誤?你能證明你如何檢索數據庫實例嗎?你使用getWritableDatabase()或getReadableDatabase()? – hovanessyan

+0

我正在使用getWritableDatabase()函數。 –

回答