博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android--批量插入数据到SQLite数据库
阅读量:6441 次
发布时间:2019-06-23

本文共 2073 字,大约阅读时间需要 6 分钟。

中在sqlite插入数据的时候默认一条语句就是一个事务,因此如果存在上万条数据插入的话,那就需要执行上万次插入操作,操作速度可想而知。因此在Android中插入数据时,使用批量插入的方式可以大大提高插入速度。
  有时需要把一些数据内置到应用中,常用的有以下几种方式:
1、使用db.execSQL()
  这里是把要插入的数据拼接成可执行的sql语句,然后调用db.execSQL(sql)方法执行插入。
public void inertOrUpdateDateBatch(List
sqls) {SQLiteDatabase db = getWritableDatabase();db.beginTransaction();try {for (String sql : sqls) {db.execSQL(sql);}// 设置事务标志为成功,当结束事务时就会提交事务db.setTransactionSuccessful();} catch (Exception e) {e.printStackTrace();} finally {// 结束事务db.endTransaction();db.close();}}
2、使用db.insert("table_name", null, contentValues)
  这里是把要插入的数据封装到ContentValues类中,然后调用db.insert()方法执行插入。
db.beginTransaction(); // 手动设置开始事务for (ContentValues v : list) {db.insert("bus_line_station", null, v);}db.setTransactionSuccessful(); // 设置事务处理成功,不设置会自动回滚不提交db.endTransaction(); // 处理完成db.close()
3、使用InsertHelper类
  这个类在API 17中已经被废弃了
InsertHelper ih = new InsertHelper(db, "bus_line_station");db.beginTransaction();final int directColumnIndex = ih.getColumnIndex("direct");final int lineNameColumnIndex = ih.getColumnIndex("line_name");final int snoColumnIndex = ih.getColumnIndex("sno");final int stationNameColumnIndex = ih.getColumnIndex("station_name");try {for (Station s : busLines) {ih.prepareForInsert();ih.bind(directColumnIndex, s.direct);ih.bind(lineNameColumnIndex, s.lineName);ih.bind(snoColumnIndex, s.sno);ih.bind(stationNameColumnIndex, s.stationName);ih.execute();}db.setTransactionSuccessful();} finally {ih.close();db.endTransaction();db.close();}
4、使用SQLiteStatement
  查看InsertHelper时,官方文档提示改类已经废弃,请使用SQLiteStatement
String sql = "insert into bus_line_station(direct,line_name,sno,station_name) values(?,?,?,?)";SQLiteStatement stat = db.compileStatement(sql);db.beginTransaction();for (Station line : busLines) {stat.bindLong(1, line.direct);stat.bindString(2, line.lineName);stat.bindLong(3, line.sno);stat.bindString(4, line.stationName);stat.executeInsert();}db.setTransactionSuccessful();db.endTransaction();db.close();
第三种方法需要的时间最短,鉴于该类已经在API17中废弃,所以第四种方法应该是最优的方法。

转载于:https://www.cnblogs.com/chaoyu/p/6436784.html

你可能感兴趣的文章
windows 安装 nginx步骤
查看>>
linux下测试磁盘的读写IO速度
查看>>
ios的控件的AutoresizingMask属性
查看>>
NSFileManager文件管理
查看>>
我的友情链接
查看>>
37Exchange 2010升级到Exchange 2013-测试邮件流(未切换公网发布)
查看>>
Solr6.6.0 自动生成ID
查看>>
Spring框架是什么,有哪些优点
查看>>
How To Manage Dell Servers using OMSA – OpenManage Server Administrator On Linux
查看>>
陈松松:视频营销老手给新手最忠诚的10条建议
查看>>
抽象类
查看>>
Linux的学习之路
查看>>
VMware安装Mac OS X
查看>>
Segmentation fault(Core Dump)
查看>>
Ext Dom Query
查看>>
Microsoft Visio 组件Aspose.Diagram 10月新版17.10发布 | 包含.NET 和Java
查看>>
谷歌明确Fuchsia并非基于Linux内核
查看>>
即刻搜索调整
查看>>
MyEclipse 7.0快捷键ALT+/没用
查看>>
整合apache和tomcat构建Web服务器
查看>>