私は自分のアプリケーションにあらかじめデータベースを使用していますが、あらかじめデータベースに新しい行を追加し、DBのバージョンを増やしても新しいコンテンツはコピーされません。新しいコンテンツをコピーするには、アプリを再インストールする必要があります。あらかじめ設定されたデータベースでのアップグレードAndroid
私は、データベースがアップグレードされたときに新しい行をコピーするこの問題を解決するために私を助けてください。
は、ここでは、あなたのONUPGRADE方法に変更を追加しなかったので、私のだDBHelper.java
package com.suvariyaraj.algorithms.Database;
/**
* Created by GOODBOY-PC on 04/06/16.
*/
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import android.content.Context;
import android.database.SQLException;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;
import android.widget.Toast;
public class ExternalDbOpenHelper extends SQLiteOpenHelper {
//Path to the device folder with databases
public static String DB_PATH;
//Database file name
public static String DB_NAME;
public SQLiteDatabase database;
public final Context context;
public static final int DB_VERSION = 1;
public SQLiteDatabase getDb() {
return database;
}
public ExternalDbOpenHelper(Context context, String databaseName) {
super(context, databaseName, null, DB_VERSION);
this.context = context;
//Write a full path to the databases of your application
String packageName = context.getPackageName();
DB_PATH = String.format("//data//data//%s//databases//", packageName);
DB_NAME = databaseName;
openDataBase();
Log.d("mycheck", "constructor "+database.getVersion());
}
//This piece of code will create a database if it’s not yet created
public void createDataBase() {
boolean dbExist = checkDataBase();
if (!dbExist) {
this.getReadableDatabase();
try {
copyDataBase();
} catch (IOException e) {
Log.e(this.getClass().toString(), "Copying error");
throw new Error("Error copying database!");
}
} else {
Log.i(this.getClass().toString(), "Database already exists");
}
}
//Performing a database existence check
private boolean checkDataBase() {
SQLiteDatabase checkDb = null;
try {
String path = DB_PATH + DB_NAME;
checkDb = SQLiteDatabase.openDatabase(path, null,
SQLiteDatabase.OPEN_READONLY);
} catch (SQLException e) {
Log.e(this.getClass().toString(), "Error while ch1ecking db");
}
//Android doesn’t like resource leaks, everything should
// be closed
if (checkDb != null) {
checkDb.close();
}
return checkDb != null;
}
//Method for copying the database
private void copyDataBase() throws IOException {
//Open a stream for reading from our ready-made database
//The stream source is located in the assets
InputStream externalDbStream = context.getAssets().open(DB_NAME);
//Path to the created empty database on your Android device
String outFileName = DB_PATH + DB_NAME;
//Now create a stream for writing the database byte by byte
OutputStream localDbStream = new FileOutputStream(outFileName);
//Copying the database
byte[] buffer = new byte[1024];
int bytesRead;
while ((bytesRead = externalDbStream.read(buffer)) > 0) {
localDbStream.write(buffer, 0, bytesRead);
}
//Don’t forget to close the streams
localDbStream.close();
externalDbStream.close();
}
public SQLiteDatabase openDataBase() throws SQLException {
String path = DB_PATH + DB_NAME;
if (database == null) {
createDataBase();
database = SQLiteDatabase.openDatabase(path, null, SQLiteDatabase.OPEN_READWRITE);
}
return database;
}
@Override
public synchronized void close() {
if (database != null) {
database.close();
}
super.close();
}
@Override
public void onCreate(SQLiteDatabase db) {
Log.d("mycheck", "on create");
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
Toast.makeText(context,"Upgrade",Toast.LENGTH_SHORT).show();
Log.d("mycheck", "Upgrade");
context.deleteDatabase(DB_NAME);
openDataBase();
}
}
申し訳ありませんが、私はこのコードのスニペットを追加するのを忘れ、私はそれが動作しませんでしたこれを試してみました。 onUpgradeのコードを正確に教えてください。 –
あなたは何をしようとしたのですか?投稿を編集しましたか? –
データベースのどのテーブルに追加しようとしているデータ/行がわかりません。既存のデータベースに新しい行を挿入するためのクエリの作成に問題がある場合は、この記事の形式に従ってください。http://www.sqlitetutorial.net/sqlite-insert/クエリを取得したら、私は私の郵便であなたを提供しました –