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 上的批量操作(创建和更新、删除)?
我想通过一个事务在表中插入大量数据。
例如:插入用户、产品。
getHelper().getDao().callBatchTasks(new Callable<Void>(){ @Override public Void call() throws Exception {}}) ;
在调用方法中,可以在其中插入多个对象,速度比方法外执行要快。