アプリケーションをデータベースと共に出荷する


959

アプリケーションにデータベースが必要で、それに組み込みデータが付属している場合、そのアプリケーションを出荷するための最良の方法は何ですか?したほうがいい:

  1. SQLiteデータベースを事前に作成し、.apk

  2. アプリケーションにSQLコマンドを含め、データベースを作成して、初めて使用するときにデータを挿入しますか?

私が目にする欠点は次のとおりです。

  1. SQLiteのバージョンの不一致が原因で問題が発生する可能性があり、現在、データベースの移動先とアクセス方法がわかりません。

  2. デバイス上でデータベースを作成してデータを設定するには、非常に長い時間がかかる場合があります。

助言がありますか?問題に関するドキュメントへのポインタをいただければ幸いです。



回答:


199

データベースの作成と更新には2つのオプションがあります。

1つは、外部でデータベースを作成し、それをプロジェクトのアセットフォルダーに配置して、そこからデータベース全体をコピーすることです。データベースに多くのテーブルやその他のコンポーネントがある場合、これははるかに高速です。 アップグレードは、res / values / strings.xmlファイルのデータベースバージョン番号を変更することでトリガーされます。次に、新しいデータベースを外部で作成し、assetsフォルダー内の古いデータベースを新しいデータベースに置き換え、古いデータベースを別の名前で内部ストレージに保存し、assetsフォルダーから内部ストレージに新しいデータベースをコピーして、すべてをアップグレードすることで、アップグレードを実行します。 (以前に名前が変更された)古いデータベースのデータを新しいデータベースに入れ、最後に古いデータベースを削除します。もともとデータベースを作成するには、SQLite Manager FireFoxプラグインで、作成したSQLステートメントを実行します。

もう1つのオプションは、sqlファイルから内部的にデータベースを作成することです。これはそれほど速くはありませんが、データベースにいくつかのテーブルしかない場合、遅延はおそらくユーザーには気付かないでしょう。アップグレードは、res / values / strings.xmlファイルのデータベースバージョン番号を変更することでトリガーされます。 アップグレードは、アップグレードSQLファイルを処理することによって行われます。データベースのデータは、コンテナが削除された場合(テーブルの削除など)を除いて、変更されません。

次の例は、いずれかの方法の使用方法を示しています。

以下に、create_database.sqlファイルのサンプルを示します。これは、内部メソッドのプロジェクトのアセットフォルダーに配置するか、SQLite Managerの「SQLの実行」にコピーして、外部メソッドのデータベースを作成します (注:Androidで必要なテーブルに関するコメントに注意してください)。

--Android requires a table named 'android_metadata' with a 'locale' column
CREATE TABLE "android_metadata" ("locale" TEXT DEFAULT 'en_US');
INSERT INTO "android_metadata" VALUES ('en_US');

CREATE TABLE "kitchen_table";
CREATE TABLE "coffee_table";
CREATE TABLE "pool_table";
CREATE TABLE "dining_room_table";
CREATE TABLE "card_table"; 

以下はupdate_database.sqlファイルのサンプルです。これは、内部メソッドのプロジェクトのアセットフォルダーに配置するか、SQLite Managerの「SQLの実行」にコピーして、外部メソッドのデータベースを作成します (注:3種類のSQLコメントはすべて無視されることに注意してください)この例に含まれているSQLパーサーによって。)

--CREATE TABLE "kitchen_table";  This is one type of comment in sql.  It is ignored by parseSql.
/*
 * CREATE TABLE "coffee_table"; This is a second type of comment in sql.  It is ignored by parseSql.
 */
{
CREATE TABLE "pool_table";  This is a third type of comment in sql.  It is ignored by parseSql.
}
/* CREATE TABLE "dining_room_table"; This is a second type of comment in sql.  It is ignored by parseSql. */
{ CREATE TABLE "card_table"; This is a third type of comment in sql.  It is ignored by parseSql. }

--DROP TABLE "picnic_table"; Uncomment this if picnic table was previously created and now is being replaced.
CREATE TABLE "picnic_table" ("plates" TEXT);
INSERT INTO "picnic_table" VALUES ('paper');

これは、データベースのバージョン番号の/res/values/strings.xmlファイルに追加するエントリです。

<item type="string" name="databaseVersion" format="integer">1</item>

次に、データベースにアクセスして使用するアクティビティを示します。(注:大量のリソースを使用する場合は、データベースコードを別のスレッドで実行することもできます。

package android.example;

import android.app.Activity;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;

/**
 * @author Danny Remington - MacroSolve
 * 
 *         Activity for demonstrating how to use a sqlite database.
 */
public class Database extends Activity {
     /** Called when the activity is first created. */
     @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        DatabaseHelper myDbHelper;
        SQLiteDatabase myDb = null;

        myDbHelper = new DatabaseHelper(this);
        /*
         * Database must be initialized before it can be used. This will ensure
         * that the database exists and is the current version.
         */
         myDbHelper.initializeDataBase();

         try {
            // A reference to the database can be obtained after initialization.
            myDb = myDbHelper.getWritableDatabase();
            /*
             * Place code to use database here.
             */
         } catch (Exception ex) {
            ex.printStackTrace();
         } finally {
            try {
                myDbHelper.close();
            } catch (Exception ex) {
                ex.printStackTrace();
            } finally {
                myDb.close();
            }
        }

    }
}

以下は、必要に応じてデータベースが作成または更新されるデータベースヘルパークラスです。 (注:Androidでは、Sqliteデータベースを操作するために、SQLiteOpenHelperを拡張するクラスを作成する必要があります。)

package android.example;

import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;

/**
 * @author Danny Remington - MacroSolve
 * 
 *         Helper class for sqlite database.
 */
public class DatabaseHelper extends SQLiteOpenHelper {

    /*
     * The Android's default system path of the application database in internal
     * storage. The package of the application is part of the path of the
     * directory.
     */
    private static String DB_DIR = "/data/data/android.example/databases/";
    private static String DB_NAME = "database.sqlite";
    private static String DB_PATH = DB_DIR + DB_NAME;
    private static String OLD_DB_PATH = DB_DIR + "old_" + DB_NAME;

    private final Context myContext;

    private boolean createDatabase = false;
    private boolean upgradeDatabase = false;

    /**
     * Constructor Takes and keeps a reference of the passed context in order to
     * access to the application assets and resources.
     * 
     * @param context
     */
    public DatabaseHelper(Context context) {
        super(context, DB_NAME, null, context.getResources().getInteger(
                R.string.databaseVersion));
        myContext = context;
        // Get the path of the database that is based on the context.
        DB_PATH = myContext.getDatabasePath(DB_NAME).getAbsolutePath();
    }

    /**
     * Upgrade the database in internal storage if it exists but is not current. 
     * Create a new empty database in internal storage if it does not exist.
     */
    public void initializeDataBase() {
        /*
         * Creates or updates the database in internal storage if it is needed
         * before opening the database. In all cases opening the database copies
         * the database in internal storage to the cache.
         */
        getWritableDatabase();

        if (createDatabase) {
            /*
             * If the database is created by the copy method, then the creation
             * code needs to go here. This method consists of copying the new
             * database from assets into internal storage and then caching it.
             */
            try {
                /*
                 * Write over the empty data that was created in internal
                 * storage with the one in assets and then cache it.
                 */
                copyDataBase();
            } catch (IOException e) {
                throw new Error("Error copying database");
            }
        } else if (upgradeDatabase) {
            /*
             * If the database is upgraded by the copy and reload method, then
             * the upgrade code needs to go here. This method consists of
             * renaming the old database in internal storage, create an empty
             * new database in internal storage, copying the database from
             * assets to the new database in internal storage, caching the new
             * database from internal storage, loading the data from the old
             * database into the new database in the cache and then deleting the
             * old database from internal storage.
             */
            try {
                FileHelper.copyFile(DB_PATH, OLD_DB_PATH);
                copyDataBase();
                SQLiteDatabase old_db = SQLiteDatabase.openDatabase(OLD_DB_PATH, null, SQLiteDatabase.OPEN_READWRITE);
                SQLiteDatabase new_db = SQLiteDatabase.openDatabase(DB_PATH,null, SQLiteDatabase.OPEN_READWRITE);
                /*
                 * Add code to load data into the new database from the old
                 * database and then delete the old database from internal
                 * storage after all data has been transferred.
                 */
            } catch (IOException e) {
                throw new Error("Error copying database");
            }
        }

    }

    /**
     * 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 {
        /*
         * Close SQLiteOpenHelper so it will commit the created empty database
         * to internal storage.
         */
        close();

        /*
         * Open the database in the assets folder as the input stream.
         */
        InputStream myInput = myContext.getAssets().open(DB_NAME);

        /*
         * Open the empty db in interal storage as the output stream.
         */
        OutputStream myOutput = new FileOutputStream(DB_PATH);

        /*
         * Copy over the empty db in internal storage with the database in the
         * assets folder.
         */
        FileHelper.copyFile(myInput, myOutput);

        /*
         * Access the copied database so SQLiteHelper will cache it and mark it
         * as created.
         */
        getWritableDatabase().close();
    }

    /*
     * This is where the creation of tables and the initial population of the
     * tables should happen, if a database is being created from scratch instead
     * of being copied from the application package assets. Copying a database
     * from the application package assets to internal storage inside this
     * method will result in a corrupted database.
     * <P>
     * NOTE: This method is normally only called when a database has not already
     * been created. When the database has been copied, then this method is
     * called the first time a reference to the database is retrieved after the
     * database is copied since the database last cached by SQLiteOpenHelper is
     * different than the database in internal storage.
     */
    @Override
    public void onCreate(SQLiteDatabase db) {
        /*
         * Signal that a new database needs to be copied. The copy process must
         * be performed after the database in the cache has been closed causing
         * it to be committed to internal storage. Otherwise the database in
         * internal storage will not have the same creation timestamp as the one
         * in the cache causing the database in internal storage to be marked as
         * corrupted.
         */
        createDatabase = true;

        /*
         * This will create by reading a sql file and executing the commands in
         * it.
         */
            // try {
            // InputStream is = myContext.getResources().getAssets().open(
            // "create_database.sql");
            //
            // String[] statements = FileHelper.parseSqlFile(is);
            //
            // for (String statement : statements) {
            // db.execSQL(statement);
            // }
            // } catch (Exception ex) {
            // ex.printStackTrace();
            // }
    }

    /**
     * Called only if version number was changed and the database has already
     * been created. Copying a database from the application package assets to
     * the internal data system inside this method will result in a corrupted
     * database in the internal data system.
     */
    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        /*
         * Signal that the database needs to be upgraded for the copy method of
         * creation. The copy process must be performed after the database has
         * been opened or the database will be corrupted.
         */
        upgradeDatabase = true;

        /*
         * Code to update the database via execution of sql statements goes
         * here.
         */

        /*
         * This will upgrade by reading a sql file and executing the commands in
         * it.
         */
        // try {
        // InputStream is = myContext.getResources().getAssets().open(
        // "upgrade_database.sql");
        //
        // String[] statements = FileHelper.parseSqlFile(is);
        //
        // for (String statement : statements) {
        // db.execSQL(statement);
        // }
        // } catch (Exception ex) {
        // ex.printStackTrace();
        // }
    }

    /**
     * Called everytime the database is opened by getReadableDatabase or
     * getWritableDatabase. This is called after onCreate or onUpgrade is
     * called.
     */
    @Override
    public void onOpen(SQLiteDatabase db) {
        super.onOpen(db);
    }

    /*
     * Add your public helper methods to access and get content from the
     * database. You could return cursors by doing
     * "return myDataBase.query(....)" so it'd be easy to you to create adapters
     * for your views.
     */

}

次に、バイトストリームをコピーしてSQLファイルを解析するためのメソッドを含むFileHelperクラスを示します。

package android.example;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.Reader;
import java.nio.channels.FileChannel;

/**
 * @author Danny Remington - MacroSolve
 * 
 *         Helper class for common tasks using files.
 * 
 */
public class FileHelper {
    /**
     * Creates the specified <i><b>toFile</b></i> that is a byte for byte a copy
     * of <i><b>fromFile</b></i>. If <i><b>toFile</b></i> already existed, then
     * it will be replaced with a copy of <i><b>fromFile</b></i>. The name and
     * path of <i><b>toFile</b></i> will be that of <i><b>toFile</b></i>. Both
     * <i><b>fromFile</b></i> and <i><b>toFile</b></i> will be closed by this
     * operation.
     * 
     * @param fromFile
     *            - InputStream for the file to copy from.
     * @param toFile
     *            - InputStream for the file to copy to.
     */
    public static void copyFile(InputStream fromFile, OutputStream toFile) throws IOException {
        // transfer bytes from the inputfile to the outputfile
        byte[] buffer = new byte[1024];
        int length;

        try {
            while ((length = fromFile.read(buffer)) > 0) {
                toFile.write(buffer, 0, length);
            }
        }
        // Close the streams
        finally {
            try {
                if (toFile != null) {
                    try {
                        toFile.flush();
                    } finally {
                        toFile.close();
                    }
            }
            } finally {
                if (fromFile != null) {
                    fromFile.close();
                }
            }
        }
    }

    /**
     * Creates the specified <i><b>toFile</b></i> that is a byte for byte a copy
     * of <i><b>fromFile</b></i>. If <i><b>toFile</b></i> already existed, then
     * it will be replaced with a copy of <i><b>fromFile</b></i>. The name and
     * path of <i><b>toFile</b></i> will be that of <i><b>toFile</b></i>. Both
     * <i><b>fromFile</b></i> and <i><b>toFile</b></i> will be closed by this
     * operation.
     * 
     * @param fromFile
     *            - String specifying the path of the file to copy from.
     * @param toFile
     *            - String specifying the path of the file to copy to.
     */
    public static void copyFile(String fromFile, String toFile) throws IOException {
        copyFile(new FileInputStream(fromFile), new FileOutputStream(toFile));
    }

    /**
     * Creates the specified <i><b>toFile</b></i> that is a byte for byte a copy
     * of <i><b>fromFile</b></i>. If <i><b>toFile</b></i> already existed, then
     * it will be replaced with a copy of <i><b>fromFile</b></i>. The name and
     * path of <i><b>toFile</b></i> will be that of <i><b>toFile</b></i>. Both
     * <i><b>fromFile</b></i> and <i><b>toFile</b></i> will be closed by this
     * operation.
     * 
     * @param fromFile
     *            - File for the file to copy from.
     * @param toFile
     *            - File for the file to copy to.
     */
    public static void copyFile(File fromFile, File toFile) throws IOException {
        copyFile(new FileInputStream(fromFile), new FileOutputStream(toFile));
    }

    /**
     * Creates the specified <i><b>toFile</b></i> that is a byte for byte a copy
     * of <i><b>fromFile</b></i>. If <i><b>toFile</b></i> already existed, then
     * it will be replaced with a copy of <i><b>fromFile</b></i>. The name and
     * path of <i><b>toFile</b></i> will be that of <i><b>toFile</b></i>. Both
     * <i><b>fromFile</b></i> and <i><b>toFile</b></i> will be closed by this
     * operation.
     * 
     * @param fromFile
     *            - FileInputStream for the file to copy from.
     * @param toFile
     *            - FileInputStream for the file to copy to.
     */
    public static void copyFile(FileInputStream fromFile, FileOutputStream toFile) throws IOException {
        FileChannel fromChannel = fromFile.getChannel();
        FileChannel toChannel = toFile.getChannel();

        try {
            fromChannel.transferTo(0, fromChannel.size(), toChannel);
        } finally {
            try {
                if (fromChannel != null) {
                    fromChannel.close();
                }
            } finally {
                if (toChannel != null) {
                    toChannel.close();
                }
            }
        }
    }

    /**
     * Parses a file containing sql statements into a String array that contains
     * only the sql statements. Comments and white spaces in the file are not
     * parsed into the String array. Note the file must not contained malformed
     * comments and all sql statements must end with a semi-colon ";" in order
     * for the file to be parsed correctly. The sql statements in the String
     * array will not end with a semi-colon ";".
     * 
     * @param sqlFile
     *            - String containing the path for the file that contains sql
     *            statements.
     * 
     * @return String array containing the sql statements.
     */
    public static String[] parseSqlFile(String sqlFile) throws IOException {
        return parseSqlFile(new BufferedReader(new FileReader(sqlFile)));
    }

    /**
     * Parses a file containing sql statements into a String array that contains
     * only the sql statements. Comments and white spaces in the file are not
     * parsed into the String array. Note the file must not contained malformed
     * comments and all sql statements must end with a semi-colon ";" in order
     * for the file to be parsed correctly. The sql statements in the String
     * array will not end with a semi-colon ";".
     * 
     * @param sqlFile
     *            - InputStream for the file that contains sql statements.
     * 
     * @return String array containing the sql statements.
     */
    public static String[] parseSqlFile(InputStream sqlFile) throws IOException {
        return parseSqlFile(new BufferedReader(new InputStreamReader(sqlFile)));
    }

    /**
     * Parses a file containing sql statements into a String array that contains
     * only the sql statements. Comments and white spaces in the file are not
     * parsed into the String array. Note the file must not contained malformed
     * comments and all sql statements must end with a semi-colon ";" in order
     * for the file to be parsed correctly. The sql statements in the String
     * array will not end with a semi-colon ";".
     * 
     * @param sqlFile
     *            - Reader for the file that contains sql statements.
     * 
     * @return String array containing the sql statements.
     */
    public static String[] parseSqlFile(Reader sqlFile) throws IOException {
        return parseSqlFile(new BufferedReader(sqlFile));
    }

    /**
     * Parses a file containing sql statements into a String array that contains
     * only the sql statements. Comments and white spaces in the file are not
     * parsed into the String array. Note the file must not contained malformed
     * comments and all sql statements must end with a semi-colon ";" in order
     * for the file to be parsed correctly. The sql statements in the String
     * array will not end with a semi-colon ";".
     * 
     * @param sqlFile
     *            - BufferedReader for the file that contains sql statements.
     * 
     * @return String array containing the sql statements.
     */
    public static String[] parseSqlFile(BufferedReader sqlFile) throws IOException {
        String line;
        StringBuilder sql = new StringBuilder();
        String multiLineComment = null;

        while ((line = sqlFile.readLine()) != null) {
            line = line.trim();

            // Check for start of multi-line comment
            if (multiLineComment == null) {
                // Check for first multi-line comment type
                if (line.startsWith("/*")) {
                    if (!line.endsWith("}")) {
                        multiLineComment = "/*";
                    }
                // Check for second multi-line comment type
                } else if (line.startsWith("{")) {
                    if (!line.endsWith("}")) {
                        multiLineComment = "{";
                }
                // Append line if line is not empty or a single line comment
                } else if (!line.startsWith("--") && !line.equals("")) {
                    sql.append(line);
                } // Check for matching end comment
            } else if (multiLineComment.equals("/*")) {
                if (line.endsWith("*/")) {
                    multiLineComment = null;
                }
            // Check for matching end comment
            } else if (multiLineComment.equals("{")) {
                if (line.endsWith("}")) {
                    multiLineComment = null;
                }
            }

        }

        sqlFile.close();

        return sql.toString().split(";");
    }

}

上記のコードを使用してdbをアップグレードしました。上記の値にセミコロンが含まれているため、挿入が正しくないことに言及していることに気づきました。
Sam

5
3番目のオプションがあります-Webからデータベースをコピーします。私はこれを実行しましたが、4 MBのDBの場合はかなり速くなります。また、2.3の問題も解決します。この問題では、最初のソリューション(dbのコピー)が機能しません。
Jack BeNimble、2011

2
ダニーとオースティン-あなたの解決策は完璧でした。私は自家醸造の解決策で問題を抱えていて、あなたの解決策を見つけました。それは本当にその場に当たりました。提供していただきありがとうございます。
ジョージベイカー、

4
私は、この投票が上位の投票および承認されたものに対して非常に好まれています。すべての情報が1か所にあり(このリンク部分は表示されません)、存在していなかった(CREATE TABLE "android_metadata"のような)いくつかのAndroid固有の情報が含まれています。また、例は非常に詳細に書かれており、プラスです。コピーペーストソリューションとほぼ同じですが、常に良いとは限りませんが、コード間の説明は素晴らしいものです。
IgorČordaš2014年

同じ方法を使用していますが、1つの問題に直面しています。既存のすべてのデータを古いdbファイルから新しいdbファイルに簡単にコピーする方法を教えてください。
Pankaj 2015年

130

SQLiteAssetHelperライブラリには、このタスクが本当に簡単になります。

Gradleの依存関係として追加するのは簡単です(ただし、JarはAnt / Eclipseでも使用できます)。ドキュメントと併せて、https
//github.com/jgilfelt/android-sqlite-asset-helperにあります。

注:このプロジェクトは、上記のGithubリンクに記載されているように維持されなくなりました。

ドキュメントで説明されているように:

  1. モジュールのgradleビルドファイルに依存関係を追加します:

    dependencies {
        compile 'com.readystatesoftware.sqliteasset:sqliteassethelper:+'
    }
  2. という名前のサブディレクトリにあるアセットディレクトリにデータベースをコピーしますassets/databases。例えば:
    assets/databases/my_database.db

    (オプションで、データベースをなどのzipファイルに圧縮できますassets/databases/my_database.zip。APKはすでに全体として圧縮されているため、これは必要ありません。)

  3. たとえば、クラスを作成します。

    public class MyDatabase extends SQLiteAssetHelper {
    
        private static final String DATABASE_NAME = "my_database.db";
        private static final int DATABASE_VERSION = 1;
    
        public MyDatabase(Context context) {
            super(context, DATABASE_NAME, null, DATABASE_VERSION);
        }
    }

android-sqlite-asset-helper.jarのダウンロードには、どの認証情報が必要ですか?
Pr38y

1
Gradleを使用している場合は、依存関係を追加するだけです。
Suragch 2015

どのようにしてDBからデータを取得しますか?
マチャド

Android StudioとGradleを使用すると、さらに簡単です。リンクをチェック!
ベンダフ2015年

5
このライブラリは廃止され、最後の更新は4年前であることに注意してください。
活動の削減

13

私のソリューションは、サードパーティのライブラリを使用しておらずSQLiteOpenHelper、作成時にデータベースを初期化するためにサブクラスでカスタムメソッドを呼び出すことも強制していません。また、データベースのアップグレードも行います。行う必要があるのは、サブクラス化することだけSQLiteOpenHelperです。

前提条件:

  1. アプリに同梱するデータベース。アプリに固有のテーブルに加えて、値を持つ属性で名前が付けられた1x1テーブルが含まれている必要があります。android_metadatalocaleen_US

サブクラス化SQLiteOpenHelper

  1. サブクラスSQLiteOpenHelper
  2. サブクラスprivate内にメソッドを作成しますSQLiteOpenHelper。このメソッドには、「assets」フォルダー内のデータベースファイルからアプリケーションパッケージコンテキストで作成されたデータベースにデータベースの内容をコピーするロジックが含まれています。
  3. オーバーライドonCreateonUpgrade およびの onOpenメソッドSQLiteOpenHelper

十分に言った。ここにSQLiteOpenHelperサブクラスがあります:

public class PlanDetailsSQLiteOpenHelper extends SQLiteOpenHelper {
    private static final String TAG = "SQLiteOpenHelper";

    private final Context context;
    private static final int DATABASE_VERSION = 1;
    private static final String DATABASE_NAME = "my_custom_db";

    private boolean createDb = false, upgradeDb = false;

    public PlanDetailsSQLiteOpenHelper(Context context) {
        super(context, DATABASE_NAME, null, DATABASE_VERSION);
        this.context = context;
    }

    /**
     * Copy packaged database from assets folder to the database created in the
     * application package context.
     * 
     * @param db
     *            The target database in the application package context.
     */
    private void copyDatabaseFromAssets(SQLiteDatabase db) {
        Log.i(TAG, "copyDatabase");
        InputStream myInput = null;
        OutputStream myOutput = null;
        try {
            // Open db packaged as asset as the input stream
            myInput = context.getAssets().open("path/to/shipped/db/file");

            // Open the db in the application package context:
            myOutput = new FileOutputStream(db.getPath());

            // Transfer db file contents:
            byte[] buffer = new byte[1024];
            int length;
            while ((length = myInput.read(buffer)) > 0) {
                myOutput.write(buffer, 0, length);
            }
            myOutput.flush();

            // Set the version of the copied database to the current
            // version:
            SQLiteDatabase copiedDb = context.openOrCreateDatabase(
                DATABASE_NAME, 0, null);
            copiedDb.execSQL("PRAGMA user_version = " + DATABASE_VERSION);
            copiedDb.close();

        } catch (IOException e) {
            e.printStackTrace();
            throw new Error(TAG + " Error copying database");
        } finally {
            // Close the streams
            try {
                if (myOutput != null) {
                    myOutput.close();
                }
                if (myInput != null) {
                    myInput.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
                throw new Error(TAG + " Error closing streams");
            }
        }
    }

    @Override
    public void onCreate(SQLiteDatabase db) {
        Log.i(TAG, "onCreate db");
        createDb = true;
    }

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        Log.i(TAG, "onUpgrade db");
        upgradeDb = true;
    }

    @Override
    public void onOpen(SQLiteDatabase db) {
        Log.i(TAG, "onOpen db");
        if (createDb) {// The db in the application package
            // context is being created.
            // So copy the contents from the db
            // file packaged in the assets
            // folder:
            createDb = false;
            copyDatabaseFromAssets(db);

        }
        if (upgradeDb) {// The db in the application package
            // context is being upgraded from a lower to a higher version.
            upgradeDb = false;
            // Your db upgrade logic here:
        }
    }
}

最後に、データベース接続を取得するには、サブクラスでgetReadableDatabase()またはgetWritableDatabase()を呼び出すだけで、データベースSQLiteOpenHelperが作成され、データベースが存在しない場合は、「assets」フォルダー内の指定されたファイルからdbの内容がコピーされます。

つまり、メソッドでSQLiteOpenHelperSQLクエリを使用して初期化されるデータベースに使用するのと同じように、サブクラスを使用して、assetsフォルダーに含まれるdbにアクセスできますonCreate()


2
これは、外部ライブラリを必要とせずに標準のAndroid APIを使用する最もエレガントなソリューションです。メモとして、私はandroid_metadataテーブルを含めていませんが、それは機能します。新しいバージョンのAndroidでは自動的に追加される場合があります。
goetzc 2016

12

Android Studio 3.0でのデータベースファイルを含むアプリの配布

アプリにデータベースファイルを同梱することは、私にとっては良い考えです。利点は、データセットが巨大な場合、複雑な初期化を行う必要がないことです。これにより、多くの時間がかかることがあります。

手順1:データベースファイルを準備する

データベースファイルを準備します。.dbファイルまたは.sqliteファイルのいずれかです。.sqliteファイルを使用する場合は、ファイル拡張子名を変更するだけです。手順は同じです。

この例では、testDB.dbというファイルを用意しました。このように1つのテーブルといくつかのサンプルデータがあります ここに画像の説明を入力してください

ステップ2:ファイルをプロジェクトにインポートする

アセットフォルダーがない場合は作成します。次に、データベースファイルをコピーして、このフォルダーに貼り付けます。

ここに画像の説明を入力してください

手順3:ファイルをアプリのデータフォルダーにコピーする

さらに操作するには、データベースファイルをアプリのデータフォルダーにコピーする必要があります。これは、データベースファイルをコピーするための1回限りのアクション(初期化)です。このコードを複数回呼び出すと、データフォルダー内のデータベースファイルは、アセットフォルダー内のデータベースファイルによって上書きされます。この上書きプロセスは、アプリの更新中に将来データベースを更新する場合に役立ちます。

アプリの更新中、このデータベースファイルはアプリのデータフォルダーで変更されないことに注意してください。アンインストールのみで削除されます。

データベースファイルを/databasesフォルダにコピーする必要があります。Device File Explorerを開きます。data/data/<YourAppName>/場所を入力してください。これは、上記のアプリのデフォルトのデータフォルダーです。そしてデフォルトでは、データベースファイルはこのディレクトリの下のデータベースと呼ばれる別のフォルダに配置されます

ここに画像の説明を入力してください

現在、ファイルのコピープロセスは、Javaが実行している処理とほとんど同じです。次のコードを使用して、コピーと貼り付けを行います。これは開始コードです。また、将来的にデータベースファイルを更新(上書き)するためにも使用できます。

//get context by calling "this" in activity or getActivity() in fragment
//call this if API level is lower than 17  String appDataPath = "/data/data/" + context.getPackageName() + "/databases/"
String appDataPath = context.getApplicationInfo().dataDir;

File dbFolder = new File(appDataPath + "/databases");//Make sure the /databases folder exists
dbFolder.mkdir();//This can be called multiple times.

File dbFilePath = new File(appDataPath + "/databases/testDB.db");

try {
    InputStream inputStream = context.getAssets().open("testDB.db");
    OutputStream outputStream = new FileOutputStream(dbFilePath);
    byte[] buffer = new byte[1024];
    int length;
    while ((length = inputStream.read(buffer))>0)
    {
        outputStream.write(buffer, 0, length);
    }
    outputStream.flush();
    outputStream.close();
    inputStream.close();
} catch (IOException e){
    //handle
}

次に、フォルダを更新して、コピープロセスを確認します。

ここに画像の説明を入力してください

ステップ4:データベースオープンヘルパーを作成する

のサブクラスを作成し、SQLiteOpenHelper接続、クローズ、パスなどを使用します。DatabaseOpenHelper

import android.content.Context;
import android.database.SQLException;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;

public class DatabaseOpenHelper extends SQLiteOpenHelper {
    public static final String DB_NAME = "testDB.db";
    public static final String DB_SUB_PATH = "/databases/" + DB_NAME;
    private static String APP_DATA_PATH = "";
    private SQLiteDatabase dataBase;
    private final Context context;

    public DatabaseOpenHelper(Context context){
        super(context, DB_NAME, null, 1);
        APP_DATA_PATH = context.getApplicationInfo().dataDir;
        this.context = context;
    }

    public boolean openDataBase() throws SQLException{
        String mPath = APP_DATA_PATH + DB_SUB_PATH;
        //Note that this method assumes that the db file is already copied in place
        dataBase = SQLiteDatabase.openDatabase(mPath, null, SQLiteDatabase.OPEN_READWRITE);
        return dataBase != null;
    }

    @Override
    public synchronized void close(){
        if(dataBase != null) {dataBase.close();}
        super.close();
    }

    @Override
    public void onCreate(SQLiteDatabase db) {
    }

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
    }
}

ステップ5:データベースと対話するための最上位クラスを作成する

これは、データベースファイルを読み書きするクラスになります。また、データベースの値を出力するためのサンプルクエリもあります。

import android.content.Context;
import android.database.Cursor;
import android.database.SQLException;
import android.database.sqlite.SQLiteDatabase;
import android.util.Log;

public class Database {
    private final Context context;
    private SQLiteDatabase database;
    private DatabaseOpenHelper dbHelper;

    public Database(Context context){
        this.context = context;
        dbHelper = new DatabaseOpenHelper(context);
    }

    public Database open() throws SQLException
    {
        dbHelper.openDataBase();
        dbHelper.close();
        database = dbHelper.getReadableDatabase();
        return this;
    }

    public void close()
    {
        dbHelper.close();
    }

    public void test(){
        try{
            String query ="SELECT value FROM test1";
            Cursor cursor = database.rawQuery(query, null);
            if (cursor.moveToFirst()){
                do{
                    String value = cursor.getString(0);
                    Log.d("db", value);
                }while (cursor.moveToNext());
            }
            cursor.close();
        } catch (SQLException e) {
            //handle
        }
    }
}

ステップ6:テスト実行

次のコード行を実行して、コードをテストします。

Database db = new Database(context);
db.open();
db.test();
db.close();

実行ボタンを押して応援してください!

ここに画像の説明を入力してください


1
初期化はいつ行うべきですか?あなたが提案する戦略は何ですか?
ダニエレB

8

2017年11月、Googleはルームパーシスタンスライブラリをリリースしました。

ドキュメントから:

Room永続性ライブラリは、SQ ストロングテキスト Lite 上に抽象化レイヤーを提供し、SQLiteの全機能を利用しながら、流暢なデータベースアクセスを可能にします 。

ライブラリは、アプリを実行しているデバイスでアプリのデータのキャッシュを作成するのに役立ちます。このキャッシュは、アプリの唯一の信頼できる情報源として機能し、ユーザーがインターネットに接続しているかどうかに関係なく、アプリ内の重要な情報の一貫したコピーを表示できます。

Roomデータベースには、データベースが最初に作成または開かれたときにコールバックがあります。createコールバックを使用して、データベースにデータを入力できます。

Room.databaseBuilder(context.applicationContext,
        DataDatabase::class.java, "Sample.db")
        // prepopulate the database after onCreate was called
        .addCallback(object : Callback() {
            override fun onCreate(db: SupportSQLiteDatabase) {
                super.onCreate(db)
                // moving to a new thread
                ioThread {
                    getInstance(context).dataDao()
                                        .insert(PREPOPULATE_DATA)
                }
            }
        })
        .build()

このブログ投稿のコード。


ありがとう、これは私のために働いた。ここでの
Jerry Sha

1
既存のSQLiteを含むAPKを出荷する場合は、それをアセットフォルダーに追加し、このパッケージgithub.com/humazed/RoomAssetを使用して、SQLiteファイルデータを新しいものにロードする移行を実行できます。このようにして、既存のDBでデータの生成を保存できます。
xarlymg89

6

私が見たものから、あなたはすでにテーブル設定とデータを持っているデータベースを出荷しているはずです。ただし、必要な場合(および使用しているアプリケーションのタイプによっては)、「データベースオプションのアップグレード」を許可できます。次に、最新のsqliteバージョンをダウンロードし、オンラインでホストされているテキストファイルの最新のInsert / Createステートメントを取得し、ステートメントを実行して、古いデータベースから新しいデータベースにデータを転送します。


6
>私が見たものから、あなたはすでにテーブル設定とデータを持っているデータベースを出荷しているはずです。はい、でもどうやってやるの?
ロリー

5

やっとやった!! 私はこのリンクヘルプを使用して、Androidアプリケーション独自のSQLiteデータベースを使用しましたが、少し変更する必要がありました。

  1. 多くのパッケージがある場合は、ここにマスターパッケージ名を入力する必要があります。

    private static String DB_PATH = "data/data/masterPakageName/databases";

  2. データベースをローカルフォルダからエミュレータフォルダにコピーする方法を変更しました!そのフォルダが存在しない場合は、いくつかの問題がありました。つまり、最初にパスを確認し、パスがない場合はフォルダーを作成する必要があります。

  3. 前のコードではcopyDatabase、データベースが存在しないときにメソッドが呼び出されず、checkDataBaseメソッドが例外を引き起こしていました。コードを少し変更しました。

  4. データベースにファイル拡張子がない場合は、ファイル名に拡張子を付けないでください。

それは私にとってはうまくいきます、私もそれがあなたにも役立つことを願っています

    package farhangsarasIntroduction;


import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.HashMap;

import android.content.Context;
import android.database.Cursor;

import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteException;
import android.database.sqlite.SQLiteOpenHelper;

import android.util.Log;


    public class DataBaseHelper extends SQLiteOpenHelper{

    //The Android's default system path of your application database.
    private static String DB_PATH = "data/data/com.example.sample/databases";

    private static String DB_NAME = "farhangsaraDb";

    private SQLiteDatabase myDataBase;

    private final Context myContext;

    /**
      * Constructor
      * Takes and keeps a reference of the passed context in order to access to the application assets and resources.
      * @param context
      */
    public DataBaseHelper(Context context) {

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

    }   

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

        boolean dbExist;
        try {

             dbExist = checkDataBase();


        } catch (SQLiteException e) {

            e.printStackTrace();
            throw new Error("database dose not exist");

        }

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

            try {

                copyDataBase();


            } catch (IOException e) {

                e.printStackTrace();
                throw new Error("Error copying database");

            }
    //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();


    }

    }

    /**
      * 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.
        throw new Error("database does't exist yet.");

    }

    if(checkDB != null){

    checkDB.close();

    }

    return checkDB != null ? true : false;
    }

    /**
      * 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{



            //copyDataBase();
            //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;
            File databaseFile = new File( DB_PATH);
             // check if databases folder exists, if not create one and its subfolders
            if (!databaseFile.exists()){
                databaseFile.mkdir();
            }

            //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) {

    }

     you to create adapters for your views.

}

古いデータベースを新しいデータベースに置き換える場合は、dbをアップグレードする方法を教えてください。古いdbを削除するにはどうすればよいですか
Erum

私は今までこれを行う必要はありませんが、新しいアプリがインストールされている場合、新しいデータベースも置き換えられます
afsane

アセットフォルダーに新しいdbを追加しているため、古いデータベースを削除する方法、指定したフォルダーから古いdbを削除する方法、それ以外の場合は古いdbのコンテンツが表示される
Erum

私は、これは便利だろう願っていstackoverflow.com/questions/9109438/...
afsane

パーフェクト、ありがとう!データベースをチェックするときに例外をスローすると、最初はDBが存在せず、例外がスローされた後にメソッドが続行されないため、コメントを1つだけ入力すると、アプリが終了します。throw new Error( "database dose not exist");を単にコメント化しました。そして今、すべてが完璧に動作します。
グリンナー2014

4

現在、APKに同梱するSQLiteデータベースを事前に作成する方法はありません。最善の方法は、適切なSQLをリソースとして保存し、アプリケーションから実行することです。はい、これはデータの複製につながります(同じ情報がリソースとしてもデータベースとしても存在します)が、現時点では他に方法はありません。唯一の問題を緩和する要素は、apkファイルが圧縮されていることです。私の経験では、908KBは268KB未満に圧縮されます。

以下のスレッドには、優れたサンプルコードで見つけた最良のディスカッション/ソリューションがあります。

http://groups.google.com/group/android-developers/msg/9f455ae93a1cf152

CREATEステートメントを文字列リソースとして保存し、Context.getString()で読み取ってSQLiteDatabse.execSQL()で実行しました。

挿入のデータをres / raw / inserts.sqlに保存しました(sqlファイルを作成し、7000行以上)。上記のリンクからの手法を使用して、ループに入り、ファイルを1行ずつ読み取り、データを "INSERT INTO tbl VALUE"に連結し、別のSQLiteDatabase.execSQL()を実行しました。7000を単に連結するだけの場合は、「INTL tbl VALUEを挿入」を保存しても意味がありません。

エミュレーターで約20秒かかりますが、実際の電話でどれくらいかかるかはわかりませんが、ユーザーが最初にアプリケーションを起動したときに一度だけ発生します。


3
最初の実行時にWebからSQLスクリプトをプルするのはどうですか?この方法では、データを複製する必要はありません。
Tamas Czinege 2009年

1
はい。ただし、デバイスはインターネットに接続する必要があります。これは、一部のアプリの重大な欠点です。
Dzhuneyt 2014

7000以上の挿入を行わないでください。このように100程度のバッチ挿入を行いますINSERT INTO table VALUES(...) VALUES(...) VALUES(...) ...(1つの挿入行には100の値が必要です)。これははるかに効率的で、起動時間を20秒から2秒または3秒に短縮します。
Mohit Atray

4

apk内でデータベースを配布してからコピーすると/data/data/...、データベースのサイズが2倍になり(1 in apk、1 in data/data/...)、apkサイズが増加します(もちろん)。したがって、データベースが大きすぎてはいけません。


2
それはapkのサイズをいくらか増やしますが、2倍にはなりません。アセットに含まれている場合は圧縮されるため、かなり小さくなります。データベースフォルダーにコピーした後、解凍されます。
Suragch

3

Androidはすでにデータベース管理のバージョン対応アプローチを提供しています。このアプローチは、AndroidアプリケーションのBARACUSフレームワークで活用されています。

アプリのバージョンライフサイクル全体に沿ってデータベースを管理できるため、sqliteデータベースを以前のバージョンから現在のバージョンに更新できます。

また、SQLiteのホットバックアップとホットリカバリを実行できます。

100%確実ではありませんが、特定のデバイスのホットリカバリにより、準備されたデータベースをアプリで出荷できる場合があります。しかし、特定のデバイス、ベンダー、またはデバイスの世代に固有である可能性があるデータベースのバイナリ形式についてはわかりません。

内容はApache License 2 なので、githubにあるコードの任意の部分を自由に再利用してください。

編集:

データを送るだけの場合は、アプリケーションの最初の起動時にPOJOをインスタンス化して永続化することを検討してください。BARACUSはこれを組み込みでサポートしています(「APP_FIRST_RUN」などの構成情報用の組み込みのキー値ストアと、コンテキストで起動後の操作を実行するためのコンテキスト後ブートストラップフック)。これにより、アプリに密結合されたデータを配布できます。ほとんどの場合、これは私のユースケースに適合しました。


3

必要なデータが大きすぎない場合(制限が不明で、多くのものに依存します)、Webサイト/ Webアプリケーションからデータ(XML、JSONなど)をダウンロードすることもできます。受信後、受信したデータを使用してSQLステートメントを実行し、テーブルを作成してデータを挿入します。

モバイルアプリに大量のデータが含まれている場合、後でインストールされたアプリのデータをより正確なデータまたは変更で更新する方が簡単な場合があります。


3

クラスと質問への回答を変更し、DB_VERSIONを介してデータベースを更新できるクラスを作成しました。

public class DatabaseHelper extends SQLiteOpenHelper {
    private static String DB_NAME = "info.db";
    private static String DB_PATH = "";
    private static final int DB_VERSION = 1;

    private SQLiteDatabase mDataBase;
    private final Context mContext;
    private boolean mNeedUpdate = false;

    public DatabaseHelper(Context context) {
        super(context, DB_NAME, null, DB_VERSION);
        if (android.os.Build.VERSION.SDK_INT >= 17)
            DB_PATH = context.getApplicationInfo().dataDir + "/databases/";
        else
            DB_PATH = "/data/data/" + context.getPackageName() + "/databases/";
        this.mContext = context;

        copyDataBase();

        this.getReadableDatabase();
    }

    public void updateDataBase() throws IOException {
        if (mNeedUpdate) {
            File dbFile = new File(DB_PATH + DB_NAME);
            if (dbFile.exists())
                dbFile.delete();

            copyDataBase();

            mNeedUpdate = false;
        }
    }

    private boolean checkDataBase() {
        File dbFile = new File(DB_PATH + DB_NAME);
        return dbFile.exists();
    }

    private void copyDataBase() {
        if (!checkDataBase()) {
            this.getReadableDatabase();
            this.close();
            try {
                copyDBFile();
            } catch (IOException mIOException) {
                throw new Error("ErrorCopyingDataBase");
            }
        }
    }

    private void copyDBFile() throws IOException {
        InputStream mInput = mContext.getAssets().open(DB_NAME);
        //InputStream mInput = mContext.getResources().openRawResource(R.raw.info);
        OutputStream mOutput = new FileOutputStream(DB_PATH + DB_NAME);
        byte[] mBuffer = new byte[1024];
        int mLength;
        while ((mLength = mInput.read(mBuffer)) > 0)
            mOutput.write(mBuffer, 0, mLength);
        mOutput.flush();
        mOutput.close();
        mInput.close();
    }

    public boolean openDataBase() throws SQLException {
        mDataBase = SQLiteDatabase.openDatabase(DB_PATH + DB_NAME, null, SQLiteDatabase.CREATE_IF_NECESSARY);
        return mDataBase != null;
    }

    @Override
    public synchronized void close() {
        if (mDataBase != null)
            mDataBase.close();
        super.close();
    }

    @Override
    public void onCreate(SQLiteDatabase db) {

    }

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        if (newVersion > oldVersion)
            mNeedUpdate = true;
    }
}

クラスを使用する。

アクティビティクラスで、変数を宣言します。

private DatabaseHelper mDBHelper;
private SQLiteDatabase mDb;

onCreateメソッドで、次のコードを記述します。

mDBHelper = new DatabaseHelper(this);

try {
    mDBHelper.updateDataBase();
} catch (IOException mIOException) {
    throw new Error("UnableToUpdateDatabase");
}

try {
    mDb = mDBHelper.getWritableDatabase();
} catch (SQLException mSQLException) {
    throw mSQLException;
}

データベースファイルをres / rawフォルダーに追加する場合は、クラスの次の変更を使用します。

public class DatabaseHelper extends SQLiteOpenHelper {
    private static String DB_NAME = "info.db";
    private static String DB_PATH = "";
    private static final int DB_VERSION = 1;

    private SQLiteDatabase mDataBase;
    private final Context mContext;
    private boolean mNeedUpdate = false;

    public DatabaseHelper(Context context) {
        super(context, DB_NAME, null, DB_VERSION);
        if (android.os.Build.VERSION.SDK_INT >= 17)
            DB_PATH = context.getApplicationInfo().dataDir + "/databases/";
        else
            DB_PATH = "/data/data/" + context.getPackageName() + "/databases/";
        this.mContext = context;

        copyDataBase();

        this.getReadableDatabase();
    }

    public void updateDataBase() throws IOException {
        if (mNeedUpdate) {
            File dbFile = new File(DB_PATH + DB_NAME);
            if (dbFile.exists())
                dbFile.delete();

            copyDataBase();

            mNeedUpdate = false;
        }
    }

    private boolean checkDataBase() {
        File dbFile = new File(DB_PATH + DB_NAME);
        return dbFile.exists();
    }

    private void copyDataBase() {
        if (!checkDataBase()) {
            this.getReadableDatabase();
            this.close();
            try {
                copyDBFile();
            } catch (IOException mIOException) {
                throw new Error("ErrorCopyingDataBase");
            }
        }
    }

    private void copyDBFile() throws IOException {
        //InputStream mInput = mContext.getAssets().open(DB_NAME);
        InputStream mInput = mContext.getResources().openRawResource(R.raw.info);
        OutputStream mOutput = new FileOutputStream(DB_PATH + DB_NAME);
        byte[] mBuffer = new byte[1024];
        int mLength;
        while ((mLength = mInput.read(mBuffer)) > 0)
            mOutput.write(mBuffer, 0, mLength);
        mOutput.flush();
        mOutput.close();
        mInput.close();
    }

    public boolean openDataBase() throws SQLException {
        mDataBase = SQLiteDatabase.openDatabase(DB_PATH + DB_NAME, null, SQLiteDatabase.CREATE_IF_NECESSARY);
        return mDataBase != null;
    }

    @Override
    public synchronized void close() {
        if (mDataBase != null)
            mDataBase.close();
        super.close();
    }

    @Override
    public void onCreate(SQLiteDatabase db) {

    }

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        if (newVersion > oldVersion)
            mNeedUpdate = true;
    }
}

http://blog.harrix.org/article/6784


2

私が書いたライブラリを、このプロセスを簡素化します。

dataBase = new DataBase.Builder(context, "myDb").
//        setAssetsPath(). // default "databases"
//        setDatabaseErrorHandler().
//        setCursorFactory().
//        setUpgradeCallback()
//        setVersion(). // default 1
build();

assets/databases/myDb.dbファイルからデータベースを作成します。さらに、これらの機能をすべて利用できます。

  • ファイルからデータベースをロード
  • データベースへの同期アクセス
  • SQLiteの最新バージョンのSQLiteのAndroid固有のディストリビューションであるrequeryによるsqlite-androidの使用。

githubからクローンします。


2

私はORMLiteを使用していて、以下のコードがうまくいきました

public class DatabaseProvider extends OrmLiteSqliteOpenHelper {
    private static final String DatabaseName = "DatabaseName";
    private static final int DatabaseVersion = 1;
    private final Context ProvidedContext;

    public DatabaseProvider(Context context) {
        super(context, DatabaseName, null, DatabaseVersion);
        this.ProvidedContext= context;
        SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(context);
        boolean databaseCopied = preferences.getBoolean("DatabaseCopied", false);
        if (databaseCopied) {
            //Do Nothing
        } else {
            CopyDatabase();
            SharedPreferences.Editor editor = preferences.edit();
            editor.putBoolean("DatabaseCopied", true);
            editor.commit();
        }
    }

    private String DatabasePath() {
        return "/data/data/" + ProvidedContext.getPackageName() + "/databases/";
    }

    private void CopyDatabase() {
        try {
            CopyDatabaseInternal();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    private File ExtractAssetsZip(String zipFileName) {
        InputStream inputStream;
        ZipInputStream zipInputStream;
        File tempFolder;
        do {
            tempFolder = null;
            tempFolder = new File(ProvidedContext.getCacheDir() + "/extracted-" + System.currentTimeMillis() + "/");
        } while (tempFolder.exists());

        tempFolder.mkdirs();

        try {
            String filename;
            inputStream = ProvidedContext.getAssets().open(zipFileName);
            zipInputStream = new ZipInputStream(new BufferedInputStream(inputStream));
            ZipEntry zipEntry;
            byte[] buffer = new byte[1024];
            int count;

            while ((zipEntry = zipInputStream.getNextEntry()) != null) {
                filename = zipEntry.getName();
                if (zipEntry.isDirectory()) {
                    File fmd = new File(tempFolder.getAbsolutePath() + "/" + filename);
                    fmd.mkdirs();
                    continue;
                }

                FileOutputStream fileOutputStream = new FileOutputStream(tempFolder.getAbsolutePath() + "/" + filename);
                while ((count = zipInputStream.read(buffer)) != -1) {
                    fileOutputStream.write(buffer, 0, count);
                }

                fileOutputStream.close();
                zipInputStream.closeEntry();
            }

            zipInputStream.close();
        } catch (IOException e) {
            e.printStackTrace();
            return null;
        }

        return tempFolder;
    }

    private void CopyDatabaseInternal() throws IOException {

        File extractedPath = ExtractAssetsZip(DatabaseName + ".zip");
        String databaseFile = "";
        for (File innerFile : extractedPath.listFiles()) {
            databaseFile = innerFile.getAbsolutePath();
            break;
        }
        if (databaseFile == null || databaseFile.length() ==0 )
            throw new RuntimeException("databaseFile is empty");

        InputStream inputStream = new FileInputStream(databaseFile);

        String outFileName = DatabasePath() + DatabaseName;

        File destinationPath = new File(DatabasePath());
        if (!destinationPath.exists())
            destinationPath.mkdirs();

        File destinationFile = new File(outFileName);
        if (!destinationFile.exists())
            destinationFile.createNewFile();

        OutputStream myOutput = new FileOutputStream(outFileName);

        byte[] buffer = new byte[1024];
        int length;
        while ((length = inputStream.read(buffer)) > 0) {
            myOutput.write(buffer, 0, length);
        }

        myOutput.flush();
        myOutput.close();
        inputStream.close();
    }

    @Override
    public void onCreate(SQLiteDatabase sqLiteDatabase, ConnectionSource connectionSource) {
    }

    @Override
    public void onUpgrade(SQLiteDatabase sqLiteDatabase, ConnectionSource connectionSource, int fromVersion, int toVersion) {

    }
}

注意してください、コードはアセットのzipファイルからデータベースファイルを抽出します

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.