温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Android中怎么批量插入数据

发布时间:2021-06-26 15:46:16 来源:亿速云 阅读:414 作者:Leah 栏目:移动开发

本篇文章为大家展示了Android中怎么批量插入数据,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。

Android中在sqlite插入数据的时候默认一条语句就是一个事务(All   individual SQL Statements, (with rare exceptions like Bulk Inserts with  No Log, or Truncate Table) are automaticaly "In a Transaction" whether  you explicitly say so or not.. (even if they insert, update, or delete  millions of rows).),因此如果存在上万条数据插入的话,那就需要执行上万次插入操作,操作速度可想而知。因此在Android中插入数据时,使用批量插入的方式可以大大提高插入速度。

批量插入的模板如下:

public void inertOrUpdateDateBatch(List<String> 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();           }       }

注意此处的:

db.execSQL(sql);

官方的API显示:

public void execSQL (String sql)

Added in API level 1

Execute a single SQL statement that is NOT a SELECT or any other SQL statement that returns data.

It has no means to return any data (such as the number of affected rows). Instead, you're encouraged to use insert(String,  String, ContentValues)update(String,  ContentValues, String, String[]), et al, when possible.

When using enableWriteAheadLogging(),  journal_mode is automatically managed by this class. So, do not set  journal_mode using "PRAGMA journal_mode'" statement if your app is  using enableWriteAheadLogging()

Parameters
sqlthe SQL statement to be executed. Multiple statements separated by semicolons are not supported.
Throws
SQLExceptionif the SQL string is invalid

说明,每次执行SQL只能有一条语句。在执行的时候,不能写成:

insert into student values('yang','boy');insert into student values('zhou','girl');

上述内容就是Android中怎么批量插入数据,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注亿速云行业资讯频道。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI