Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ormlite は Android でバッチ操作 (作成と更新、削除) をサポートしていますか?
1回のトランザクションでテーブルに大量のデータを挿入したい。
例: ユーザー、製品を挿入します。
getHelper().getDao().callBatchTasks(new Callable<Void>(){ @Override public Void call() throws Exception {}}) ;
呼び出しメソッドでは、その中に複数のオブジェクトを挿入でき、速度はメソッドから実行するよりも高速です。