एक डेटाबेस के साथ एक आवेदन जहाज


959

यदि आपके एप्लिकेशन को डेटाबेस की आवश्यकता होती है और यह अंतर्निहित डेटा के साथ आता है, तो उस एप्लिकेशन को शिप करने का सबसे अच्छा तरीका क्या है? क्या मैं:

  1. SQLite डेटाबेस को प्रीक्रिएट करें और इसमें शामिल करें .apk?

  2. SQL कमांड को एप्लिकेशन के साथ शामिल करें और क्या यह डेटाबेस बना सकता है और पहले उपयोग पर डेटा सम्मिलित करेगा?

जो कमियां मुझे दिखती हैं वे हैं:

  1. संभावित SQLite संस्करण बेमेल समस्याओं का कारण हो सकता है और मुझे वर्तमान में यह नहीं पता है कि डेटाबेस को कहां जाना चाहिए और इसे कैसे एक्सेस करना चाहिए।

  2. डिवाइस पर डेटाबेस बनाने और पॉप्युलेट करने में वास्तव में लंबा समय लग सकता है।

कोई सुझाव? किसी भी मुद्दे के बारे में दस्तावेज़ीकरण की ओर इशारा करने वालों को बहुत सराहना मिलेगी।



जवाबों:


199

डेटाबेस बनाने और अपडेट करने के दो विकल्प हैं।

एक डेटाबेस को बाहरी रूप से बनाना है, फिर इसे प्रोजेक्ट के एसेट फोल्डर में रखें और फिर पूरे डेटाबेस को वहां से कॉपी करें। यह बहुत जल्दी है अगर डेटाबेस में बहुत सारे टेबल और अन्य घटक हैं। Res / मान / strings.xml फ़ाइल में डेटाबेस संस्करण संख्या को बदलकर अपग्रेड किए जाते हैं। तब नए डेटाबेस के साथ एसेट्स फ़ोल्डर में पुराने डेटाबेस की जगह, नए डेटाबेस के साथ आंतरिक डेटाबेस में पुराने डेटाबेस को सहेजने, पुराने डेटाबेस को दूसरे नाम से सहेजने, नए डेटाबेस को आंतरिक स्टोरेज में कॉपी करने, सभी को स्थानांतरित करने से अपग्रेड्स को पूरा किया जाएगा। नए डेटाबेस में पुराने डेटाबेस से डेटा (जिसे पहले नाम दिया गया था) और अंत में पुराने डेटाबेस को हटा दिया गया। आप मूल रूप से डेटाबेस का उपयोग करके बना सकते हैंSQLite Manager FireFox plugin आपके निर्माण sql स्टेटमेंट को निष्पादित करने के लिए।

अन्य विकल्प एक sql फ़ाइल से आंतरिक रूप से डेटाबेस बनाना है। यह उतना जल्दी नहीं है, लेकिन देरी शायद उपयोगकर्ताओं के लिए ध्यान देने योग्य होगी यदि डेटाबेस में केवल कुछ टेबल हैं। Res / मान / strings.xml फ़ाइल में डेटाबेस संस्करण संख्या को बदलकर अपग्रेड किए जाते हैं। उन्नयन के बाद एक उन्नयन sql फ़ाइल प्रसंस्करण द्वारा पूरा किया जाएगा। डेटाबेस में डेटा अपरिवर्तित रहेगा सिवाय इसके जब कंटेनर हटा दिया जाता है, उदाहरण के लिए एक टेबल को गिराना।

नीचे दिए गए उदाहरण से पता चलता है कि विधि का उपयोग कैसे किया जाए।

यहाँ एक नमूना create_database.sql फ़ाइल है। यह आंतरिक विधि के लिए परियोजना के संपत्ति फ़ोल्डर में रखा जाना है या बाहरी विधि के लिए डेटाबेस बनाने के लिए SQLite प्रबंधक के "निष्पादित SQL" में कॉपी किया गया है। (नोट: एंड्रॉइड द्वारा आवश्यक तालिका के बारे में टिप्पणी पर ध्यान दें।)

--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 प्रबंधक के "निष्पादित SQL" में कॉपी किया जाएगा। (नोट: ध्यान दें कि सभी तीन प्रकार की 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();
            }
        }

    }
}

यहाँ डेटाबेस सहायक वर्ग है जहाँ डेटाबेस बनाया या आवश्यक होने पर अद्यतन किया जाता है। (नोट: एंड्रॉइड के लिए आवश्यक है कि आप एक वर्ग बनाएं जो SQLiteOpenHelper को एक Slllive डेटाबेस के साथ काम करने के लिए विस्तारित करता है।)

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

}

यहाँ फ़ाइलहेल्पर क्लास है जिसमें बाइट स्ट्रीम कॉपी करने और एसक्यूएल फ़ाइलों को पार्स करने की विधियाँ हैं।

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 को अपग्रेड करने के लिए उपरोक्त कोड का उपयोग किया था "upgrade_database.sql में सम्मिलित विवरण है। कुछ मानों में अर्धविराम है जैसे कि table_a मानों में प्रविष्ट करना ('ss', 'ddd', 'aaaa; aaa');" जब मैं चलाता हूं; मैंने ऊपर उल्लेख किया है कि किसी भी आईडी के मानों में अर्धविराम के कारण यह संभव नहीं है कि इसे कैसे ठीक किया जाए।
सैम

5
एक तीसरा विकल्प है - वेब से db कॉपी करें। मैंने ऐसा किया है और यह 4 मेगा डीबी के लिए काफी जल्दी जाता है। यह 2.3 के साथ समस्या को हल करता है, जिसके लिए पहला समाधान (कॉपी डीबी) काम नहीं करता है।
जैक बेइम्बल

2
डैनी और ऑस्टिन - आपका समाधान एकदम सही था। मैं अपने घर के पीसे हुए घोल से परेशान था और आप पर टूट पड़ा। यह वास्तव में जगह मारा। इसे प्रदान करने के लिए समय निकालने के लिए धन्यवाद।
जॉर्ज बेकर

4
मैं शीर्ष वोट के खिलाफ इस जवाब को पसंद करता हूं और एक को स्वीकार करता हूं। इसमें एक ही स्थान पर सभी जानकारी होती है (इस लिंक भागों को नहीं देखें) और कुछ एंड्रॉइड बारीकियों का उल्लेख किया है जिनका मुझे कोई पता नहीं था (जैसे क्रिएट टेबल "android_metadata")। इसके अलावा उदाहरण महान विस्तार से लिखे गए हैं जो एक प्लस है। यह लगभग एक कॉपी पेस्ट समाधान है जो हमेशा अच्छा नहीं होता है लेकिन कोड के बीच स्पष्टीकरण महान हैं।
इगोर 31ordaš

मैं एक ही विधि का उपयोग कर रहा हूं, लेकिन मैं एक समस्या का सामना कर रहा हूं। हम पुराने से नए db फ़ाइल के सभी मौजूदा डेटा को और अधिक आसान तरीके से कॉपी कर सकते हैं।
पंकज

130

SQLiteAssetHelperपुस्तकालय इस कार्य को बहुत आसान बना देता है।

एक जोड़ निर्भरता के रूप में जोड़ना आसान है (लेकिन चींटी / ग्रहण के लिए एक जार भी उपलब्ध है), और एक साथ प्रलेखन के साथ यह पाया जा सकता है:
https://github.com/jgilfelt/android-sqlite-asset-helper

नोट: यह प्रोजेक्ट अब ऊपर नहीं रखा गया है जैसा कि गीथब लिंक के ऊपर बताया गया है।

जैसा कि प्रलेखन में समझाया गया है:

  1. अपने मॉड्यूल की ग्रेडल बिल्ड फ़ाइल पर निर्भरता जोड़ें:

    dependencies {
        compile 'com.readystatesoftware.sqliteasset:sqliteassethelper:+'
    }
  2. डेटाबेस को संपत्ति निर्देशिका में कॉपी करें, जिसे उपनिर्देशिका में कहा जाता है assets/databases। उदाहरण के लिए:
    assets/databases/my_database.db

    (वैकल्पिक रूप से, आप डेटाबेस को एक ज़िप फ़ाइल में संपीड़ित कर सकते हैं जैसे कि assets/databases/my_database.zip। यह आवश्यक नहीं है, क्योंकि एपीके को पहले ही पूर्ण रूप से संपीड़ित किया जाता है।)

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

एंड्रॉइड-साइक्लाइट-एसेट-हेल्पर.जर डाउनलोडिंग के लिए कौन सा क्रेडेंशियल चाहिए?
प्र .38

1
यदि आप ग्रेडेल का उपयोग कर रहे हैं तो आप सिर्फ निर्भरता को जोड़ते हैं।
सुरगाच

आपको DB से डेटा कैसे मिलेगा?
माचाडो

यह Android Studio और gradle के साथ और भी आसान है। लिंक की जाँच करें!
बेंडाफ

5
ध्यान दें कि इस पुस्तकालय को 4 साल पहले अंतिम अद्यतन के साथ छोड़ दिया गया है।
गतिविधि

13

मेरा समाधान न तो किसी तीसरे पक्ष के पुस्तकालय का उपयोग करता है और न ही आपको SQLiteOpenHelperनिर्माण पर डेटाबेस को आरम्भ करने के लिए उपवर्ग पर कस्टम विधियों को कॉल करने के लिए मजबूर करता है । यह डेटाबेस अपग्रेड का भी ध्यान रखता है। सब करने की जरूरत है कि उपवर्ग के लिए है SQLiteOpenHelper

शर्त:

  1. वह डेटाबेस जिसे आप ऐप के साथ शिप करना चाहते हैं। इसमें एक 1x1 तालिका होनी चाहिए, जिसका नाम android_metadataएक विशेषता है localeजिसमें en_USआपके ऐप के लिए अद्वितीय तालिकाओं के अतिरिक्त मूल्य है।

उपवर्ग SQLiteOpenHelper:

  1. उपवर्ग SQLiteOpenHelper
  2. उपवर्ग के privateभीतर एक विधि बनाएँ SQLiteOpenHelper। इस पद्धति में डेटाबेस संपत्तियों को डेटाबेस फ़ाइल से 'एसेट' फ़ोल्डर में अनुप्रयोग पैकेज संदर्भ में बनाए गए डेटाबेस में कॉपी करने का तर्क है।
  3. ओवरराइड onCreate, onUpgrade और के 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उपवर्ग है और यह एक डाटाबेस बनाने, 'संपत्ति' फ़ोल्डर में निर्दिष्ट फ़ाइल से डाटाबेस सामग्री की प्रतिलिपि का ख्याल रखेंगे, अगर डेटाबेस मौजूद नहीं है।

संक्षेप में, आप SQLiteOpenHelperउप-प्रपत्र का उपयोग एसेट फ़ोल्डर में भेजए गए डीबी तक पहुंचने के लिए कर सकते हैं, जैसे कि आप उस डेटाबेस के लिए उपयोग करेंगे जो कि onCreate()विधि में SQL प्रश्नों का उपयोग करके आरंभ किया गया है।


2
बाहरी पुस्तकालयों की आवश्यकता के बिना मानक एंड्रॉइड एपीआई का उपयोग करते हुए यह सबसे सुरुचिपूर्ण समाधान है। एक नोट के रूप में, मैंने android_metadata तालिका को शामिल नहीं किया है और यह काम करता है, नए Android संस्करण इसे स्वचालित रूप से जोड़ सकते हैं।
गोएत्ज़क

12

एंड्रॉइड स्टूडियो 3.0 में, डेटाबेस फ़ाइल के साथ ऐप को शिपिंग करें

डेटाबेस फ़ाइल के साथ ऐप को शिपिंग करना मेरे लिए एक अच्छा विचार है। लाभ यह है कि आपको एक जटिल इनिशियलाइज़ेशन करने की आवश्यकता नहीं है, जो कभी-कभी बहुत समय खर्च करता है, यदि आपका डेटा सेट बहुत बड़ा है।

चरण 1: डेटाबेस फ़ाइल तैयार करें

आपकी डेटाबेस फ़ाइल तैयार है। यह या तो एक .db फ़ाइल या एक .sqlite फ़ाइल हो सकती है। यदि आप .sqlite फ़ाइल का उपयोग करते हैं, तो आपको बस इतना करना है कि फ़ाइल एक्सटेंशन नामों को बदलना है। कदम वही हैं।

इस उदाहरण में, मैंने testDB.db नामक एक फ़ाइल तैयार की। इसमें एक टेबल और कुछ सैंपल डेटा इस तरह से है यहां छवि विवरण दर्ज करें

चरण 2: फ़ाइल को अपनी परियोजना में आयात करें

यदि आपके पास एक नहीं है तो संपत्ति फ़ोल्डर बनाएँ। फिर इस फ़ोल्डर में डेटाबेस फ़ाइल को कॉपी और पेस्ट करें

यहां छवि विवरण दर्ज करें

चरण 3: फ़ाइल को ऐप के डेटा फ़ोल्डर में कॉपी करें

आपको इसके साथ इंटरेक्शन करने के लिए डेटाबेस फ़ाइल को ऐप के डेटा फ़ोल्डर में कॉपी करना होगा। यह डेटाबेस फ़ाइल की प्रतिलिपि बनाने के लिए एक बार की गई कार्रवाई (इनिशियलाइज़ेशन) है। यदि आप इस कोड को कई बार कॉल करते हैं, तो डेटा फ़ोल्डर में डेटाबेस फ़ाइल परिसंपत्ति फ़ोल्डर में एक से अधिलेखित हो जाएगी। यह ओवरराइट प्रक्रिया तब उपयोगी होती है जब आप ऐप अपडेट के दौरान भविष्य में डेटाबेस को अपडेट करना चाहते हैं।

ध्यान दें कि ऐप अपडेट के दौरान, यह डेटाबेस फ़ाइल ऐप के डेटा फ़ोल्डर में नहीं बदलेगी। केवल स्थापना रद्द करने से यह नष्ट हो जाएगा।

डेटाबेस फ़ाइल को /databasesफ़ोल्डर में कॉपी करने की आवश्यकता होती है । डिवाइस फ़ाइल एक्सप्लोरर खोलें। data/data/<YourAppName>/स्थान दर्ज करें । यह ऊपर उल्लिखित ऐप का डिफ़ॉल्ट डेटा फ़ोल्डर है। और डिफ़ॉल्ट रूप से, डेटाबेस फ़ाइल इस निर्देशिका के तहत डेटाबेस नामक एक अन्य फ़ोल्डर में होगी

यहां छवि विवरण दर्ज करें

अब, कॉपी फ़ाइल प्रक्रिया बहुत कुछ वैसा ही है जैसा जावा कर रहा है। कॉपी पेस्ट करने के लिए निम्न कोड का उपयोग करें। यह दीक्षा कोड है। इसे भविष्य में डेटाबेस फ़ाइल को अद्यतन (अधिलेखित करके) करने के लिए भी उपयोग किया जा सकता है।

//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
आरंभीकरण कब किया जाना चाहिए? आपके द्वारा सुझाई गई रणनीति क्या है?
डेनियल बी

8

नवंबर 2017 में Google ने रूम पर्सिस्टेंस लाइब्रेरी जारी की ।

प्रलेखन से:

कमरे का हठ पुस्तकालय वर्ग पर एक अमूर्त परत प्रदान करता है मजबूत पाठ लाइट की पूरी शक्ति का दोहन करते हुए धाराप्रवाह डेटाबेस का उपयोग की अनुमति के लिए SQLite

लाइब्रेरी आपको एक ऐप पर आपके ऐप के डेटा का कैश बनाने में मदद करता है जो आपके ऐप को चला रहा है। यह कैश, जो आपके ऐप के सत्य के एकल स्रोत के रूप में कार्य करता है, उपयोगकर्ताओं को आपके ऐप के भीतर महत्वपूर्ण जानकारी की एक सुसंगत प्रति देखने की अनुमति देता है, भले ही उपयोगकर्ताओं के पास इंटरनेट कनेक्शन हो।

जब पहली बार डेटाबेस बनाया या खोला जाता है तो रूम डेटाबेस में कॉलबैक होता है। अपने डेटाबेस को पॉप्युलेट करने के लिए आप कॉलबैक का उपयोग कर सकते हैं।

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()

इस ब्लॉग पोस्ट से कोड ।


धन्यवाद, यह मेरे लिए काम किया। यहाँ
जैरी शा

1
यदि आप पहले से मौजूद SQLite के साथ एक एपीके शिप करना चाहते हैं, तो आप इसे एसेट फ़ोल्डर में जोड़ सकते हैं और माइग्रेशन करने के लिए इस पैकेज github.com/humprise/RoomAsset का उपयोग कर सकते हैं जो SQLite फ़ाइल डेटा को नए में लोड करेगा। इस तरह, आप मौजूदा DB के साथ डेटा की आबादी को बचा सकते हैं।
xarlymg89

6

जो मैंने देखा है उससे आपको एक डेटाबेस को शिपिंग करना चाहिए जिसमें पहले से ही टेबल सेटअप और डेटा है। हालाँकि, यदि आप चाहते हैं (और आपके पास किस प्रकार का अनुप्रयोग है) के आधार पर आप "अपग्रेड डेटाबेस विकल्प" की अनुमति दे सकते हैं। फिर आप जो करते हैं वह नवीनतम साइक्लाइट संस्करण को डाउनलोड करता है, ऑनलाइन होस्ट किए गए टेक्स्टफाइल के नवीनतम इंसर्ट / क्रिएट स्टेटमेंट प्राप्त करते हैं, स्टेटमेंट्स निष्पादित करते हैं और पुराने db से नए में डेटा ट्रांसफर करते हैं।


6
> मैंने जो देखा है, उससे आपको एक डेटाबेस शिपिंग करना चाहिए जिसमें पहले से ही टेबल सेटअप और डेटा हो। हां लेकिन आप यह कैसे करते हैं?
रोरी

5

अंत में मैंने किया !! मैंने एंड्रॉइड एप्लिकेशन में अपने स्वयं के 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 भी बदल देगा
afsane

पुराने डेटाबेस को कैसे हटाएं क्योंकि मैं एसेट्स फ़ोल्डर में नई डीबी जोड़ रहा हूं फिर मैं निर्दिष्ट फ़ोल्डर से पुराने डीबी को कैसे
हटाऊंगा

मुझे आशा है कि यह उपयोगी stackoverflow.com/questions/9109438/…
afsane

पूर्ण धन्यवाद! सिर्फ एक टिप्पणी, डेटाबेस की जाँच पर अपवाद को फेंकने से ऐप बंद हो जाता है, क्योंकि डीबी शुरुआत में नहीं होगा और अपवाद को फेंकने के बाद विधि जारी नहीं रहती है। मैंने केवल नई त्रुटि ("डेटाबेस खुराक मौजूद नहीं है") टिप्पणी की; और अब सब कुछ पूरी तरह से काम करता है।
ग्रिनर

4

वर्तमान में SQLite डेटाबेस को आपके APK के साथ शिप करने का कोई तरीका नहीं है। आप जो सबसे अच्छा कर सकते हैं, वह उपयुक्त SQL को एक संसाधन के रूप में सहेजना और उन्हें अपने एप्लिकेशन से चलाना है। हां, इससे डेटा का दोहराव होता है (एक ही जानकारी एक क्रूस के रूप में और एक डेटाबेस के रूप में मौजूद है) लेकिन अभी कोई अन्य तरीका नहीं है। केवल शमन करने वाला कारक एपीके फ़ाइल संपीड़ित है। मेरा अनुभव 908KB है जो 268KB से कम है।

नीचे दिए गए धागे में सबसे अच्छा चर्चा / समाधान है जो मैंने अच्छे नमूना कोड के साथ पाया है।

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

मैंने Context.getString () के साथ पढ़ने के लिए एक स्ट्रिंग संसाधन के रूप में अपना CREATE स्टेटमेंट संग्रहीत किया और इसे SQLiteDatabse.execSQL () के साथ चलाया।

मैंने अपने आवेषण के लिए डेटा को res / raw / insertts.sql में संग्रहीत किया (मैंने sql फ़ाइल बनाई, 7000+ लाइनें)। ऊपर दिए गए लिंक से तकनीक का उपयोग करते हुए मैंने एक लूप में प्रवेश किया, लाइन द्वारा फाइल लाइन को पढ़ा और "INSERT INTO tbl VALUE" पर डेटा का निष्कर्ष निकाला और एक और SQLiteDatabase.execSQL () किया। 7000 "INSERT INTO tbl VALUE" को सहेजने में कोई समझदारी नहीं है, जब उन्हें सिर्फ निष्कर्ष पर रखा जा सकता है।

एमुलेटर पर लगभग बीस सेकंड लगते हैं, मुझे नहीं पता कि यह एक असली फोन पर कितना समय लगेगा, लेकिन यह केवल एक बार होता है, जब उपयोगकर्ता पहली बार आवेदन शुरू करता है।


3
पहली बार वेब से SQL स्क्रिप्ट खींचने के बारे में कैसे? इस तरह से डेटा को डुप्लिकेट करने की कोई आवश्यकता नहीं है।
तमस Czinege

1
हां, लेकिन डिवाइस को इंटरनेट से कनेक्ट करना होगा। यह कुछ ऐप्स में एक गंभीर खामी है।
17

7000+ आवेषण न करें, बैच आवेषण 100 या इस तरह करें - INSERT INTO table VALUES(...) VALUES(...) VALUES(...) ...(1 सम्मिलित पंक्ति में 100 वाल्व होना चाहिए)। यह बहुत अधिक कुशल होगा और आपके स्टार्टअप समय को 20 सेकंड से 2 या 3 सेकंड तक कम कर देगा।
मोहित अत्रे ने

4

एपीके के अंदर डेटाबेस को शिपिंग करें और फिर इसे कॉपी करने /data/data/...से डेटाबेस का आकार दोगुना हो जाएगा (1 एपीके में, 1 इंच data/data/...), और एपीके का आकार बढ़ाएगा (बेशक)। इसलिए आपका डेटाबेस बहुत बड़ा नहीं होना चाहिए।


2
यह एपीके का आकार कुछ हद तक बढ़ाता है लेकिन यह इसे दोगुना नहीं करता है। जब यह परिसंपत्तियों में होता है तो यह संकुचित होता है और इसलिए बहुत छोटा होता है। इसे डेटाबेस फ़ोल्डर में कॉपी करने के बाद यह असम्पीडित हो जाता है।
सुरगाच

3

एंड्रॉइड पहले से ही डेटाबेस प्रबंधन का एक संस्करण-जागरूक दृष्टिकोण प्रदान करता है। यह दृष्टिकोण एंड्रॉइड एप्लिकेशन के लिए BARACUS ढांचे में लिया गया है।

यह आपको किसी एप्लिकेशन के संपूर्ण संस्करण जीवनचक्र के साथ डेटाबेस को प्रबंधित करने में सक्षम बनाता है, जो किसी भी पूर्व संस्करण से वर्तमान एक तक sqlite डेटाबेस को अपडेट करने में सक्षम है।

इसके अलावा, यह आपको हॉट-बैकअप और SQLite की हॉट-रिकवरी चलाने की अनुमति देता है।

मैं 100% निश्चित नहीं हूं, लेकिन एक विशिष्ट के लिए एक गर्म-वसूली डिवाइस के आपको अपने ऐप में तैयार डेटाबेस को शिप करने में सक्षम कर सकती है। लेकिन मैं डेटाबेस बाइनरी प्रारूप के बारे में निश्चित नहीं हूं जो कुछ उपकरणों, विक्रेताओं या डिवाइस पीढ़ी के लिए विशिष्ट हो सकता है।

चूंकि सामान अपाचे लाइसेंस 2 है, इसलिए कोड के किसी भी हिस्से का पुन: उपयोग करने के लिए स्वतंत्र महसूस करें, जो कि जीथब पर पाया जा सकता है

संपादित करें:

यदि आप केवल डेटा शिप करना चाहते हैं, तो आप पहले आवेदनों पर तत्काल और स्थायी POJOs पर विचार कर सकते हैं। BARACUS को इसके लिए एक अंतर्निहित समर्थन मिला (कॉन्फिगरेशन इन्फोस के लिए बिल्ट-इन महत्वपूर्ण मूल्य स्टोर, उदाहरण के लिए "APP_FIRST_RUN" प्लस संदर्भ के बाद के ऑपरेशन को चलाने के लिए एक संदर्भ-बूट-बूट हुक)। यह आपको अपने ऐप के साथ भेजे गए तंग युग्मित डेटा को सक्षम करने में सक्षम बनाता है; ज्यादातर मामलों में यह मेरे उपयोग के मामलों के लिए फिट है।


3

यदि आवश्यक डेटा बहुत बड़ा नहीं है (सीमाएँ जो मुझे पता नहीं है, बहुत सारी चीजों पर निर्भर करेगा), तो आप वेबसाइट / वेबएप से डेटा (एक्सएमएल, जेएसएन, जो भी) डाउनलोड कर सकते हैं। प्राप्त करने के बाद, अपनी तालिकाएँ बनाने और डेटा सम्मिलित करने के लिए प्राप्त किए गए डेटा का उपयोग करके 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;
}

यदि आप फ़ोल्डर रेस / कच्चे में डेटाबेस फ़ाइल जोड़ते हैं तो कक्षा के निम्नलिखित संशोधन का उपयोग करें।

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 के नवीनतम संस्करणों का एंड्रॉइड विशिष्ट वितरण।

इसे गितुब से क्लोन करें ।


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

    }
}

कृपया ध्यान दें, कोड संपत्ति में ज़िप फ़ाइल से डेटाबेस फ़ाइल को निकालता है

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.