0

我是 Android 开发的新手。

目前,在 Android 中使用 SQLite 数据库。

我的问题是我有大量数据必须存储在 Android 的 SQLite 数据库中。

有 2 个表:一个有 14927 行,另一个有 9903 行。

目前是sql中的数据库。我已经将这些数据复制到 excel 表中,但不明白如何将这些数据导入 SQLite 数据库。

我通过以下链接:

将大量数据插入android sqlite数据库?

在这里,发布了有关 CSV 文件的解决方案。但想知道这样做的其他方法。

请让我知道在 Android 中导入如此大数据的最佳方法是什么。

请帮我。提前致谢。

4

3 回答 3

2

这样做

SQLiteDatabase sd;
    sd.beginTransaction();


        for (int i = 0; i < data.size(); i++) {
            ContentValues values = new ContentValues();
            values.put(DBAdapter.Column1,  "HP");
            values.put(DBAdapter.Column2,  "qw");
            values.put(DBAdapter.Column3,  "5280");
            values.put(DBAdapter.Column4,  "345, 546");
            sd.insert(DBAdapter.TABLE, null, values);
            sd.insertWithOnConflict(tableName, null, values, SQLiteDatabase.CONFLICT_IGNORE);

        }

    sd.setTransactionSuccessful();
    sd.endTransaction();
于 2013-08-31T08:10:38.247 回答
1

尝试这个

 SQLiteDatabase db = Your_DATABASE;
 db.beginTransaction();
 db.openDatabase(); 

for (int i = 0; i < array.size(); i++) 
{
    String sql = ( "INSERT INTO " + Table_NAME 
                                  + "(" + COLUMN_1 + "," 
                                        + COLUMN_2 + ","  
                                        + COLUMN_3 + "," 
                                        + COLUMN_4 + "," 
                                  + ") values (?,?,?,?)");

    SQLiteStatement insert = db.compileStatement(sql);
}

db.setTransactionSuccessful();
db.endTransaction();
db.closeDatabase();
于 2013-08-31T08:48:34.170 回答
0

使用DatabaseUtils.InsertHelper。在本文中,您将找到一个示例,说明如何使用它以及其他加快插入速度的方法。示例如下:

import android.database.DatabaseUtils.InsertHelper;
//...
private class DatabaseHelper extends SQLiteOpenHelper {
    @Override
    public void onCreate(SQLiteDatabase db) {
        // Create a single InsertHelper to handle this set of insertions.
        InsertHelper ih = new InsertHelper(db, "TableName");

        // Get the numeric indexes for each of the columns that we're updating
        final int greekColumn = ih.getColumnIndex("Greek");
        final int ionicColumn = ih.getColumnIndex("Ionic");
        //...
        final int romanColumn = ih.getColumnIndex("Roman");

        try {
            while (moreRowsToInsert) {
                // ... Create the data for this row (not shown) ...

                // Get the InsertHelper ready to insert a single row
                ih.prepareForInsert();

                // Add the data for each column
                ih.bind(greekColumn, greekData);
                ih.bind(ionicColumn, ionicData);
                //...
                ih.bind(romanColumn, romanData);

                // Insert the row into the database.
                ih.execute();
            }
        }
        finally {
            ih.close(); 
        }
    }
//...
}
于 2014-04-04T21:44:00.227 回答