Home > Backend Development > PHP Tutorial > thinkphp-addall方法 - thinkphp 里面的 addAll()方法怎么判断更新是否成功?该方法返回的好像是第一条插入的id。

thinkphp-addall方法 - thinkphp 里面的 addAll()方法怎么判断更新是否成功?该方法返回的好像是第一条插入的id。

WBOY
Release: 2016-06-06 20:09:15
Original
1128 people have browsed it

在项目中要用addAll()方法进行操作,然后其中是开启了事务处理。
如果addAll()方法没有完全插入成功就回滚。
怎么判断addAll()全部插入成功。
或许还有其他比较好的方案?

回复内容:

在项目中要用addAll()方法进行操作,然后其中是开启了事务处理。
如果addAll()方法没有完全插入成功就回滚。
怎么判断addAll()全部插入成功。
或许还有其他比较好的方案?

addAll是一次性写入数据库的 要么全部成功要么全部失败.sql执行的是INSERT INTO tbl_name (a,b,c) VALUES(1,2,3),(4,5,6),(7,8,9);

我记得addall 好像还有如果你数据表设置主键之类的,如果存在那么更新 如不存在插入。。

<code>M()->addAll($data , true )</code>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template