6

我正在尝试使用 ORMLite 预填充 Android SQLite 数据库。问题是这个操作太慢了。这需要几分钟。下面的代码显示了它是如何发生的。

    RuntimeExceptionDao<Company, Integer> companyDao = ORMLiteHelper.getInstance(context).getCompanyRuntimeDao();AssetManager am = context.getAssets();

    try {
        InputStream instream = am.open("companies.sqlite");
        if (instream != null) {
            InputStreamReader inputreader = new InputStreamReader(instream);
            BufferedReader buffreader = new BufferedReader(inputreader);

            String line;
            try {
                while ((line = buffreader.readLine()) != null) {
                    //Log.i("SQL", line);                       
                    if (line.startsWith("INSERT INTO Companies")) {
                        companyDao.executeRaw(line);
                    } 

                }
            } catch (Exception e) {
                Log.i("SQL", e.getMessage() + " " + e.getLocalizedMessage());
            }
        }
    } catch (Exception e) {
        Log.i("SQL", e.getMessage());
    }

company.sqlite 是一个包含大量插入行的文件,如下所示:

INSERT INTO Companies (id, name) VALUES (1, 'Duff Beer');

我正在使用 DatabaseConfigUtil 类来避免使用注释。

4

1 回答 1

11

使用数据库事务。请参阅此处TransactionManager。就像是:

TransactionManager.callInTransaction(connectionSource,
    new Callable<Void>() {
        public Void call() throws Exception {
            // Your code from above
        }
});
于 2013-09-19T02:20:09.477 回答