


This article mainly introduces the transaction processing method based on pdo in PHP, and analyzes the related implementation techniques of PDO using pdo for transaction operations in the form of examples. Friends in need can refer to the following
The examples in this article describe PHP implements pdo-based transaction processing method. Share it with everyone for your reference, the details are as follows:
Example 1:
try {} catch () {} form
<?php $dsn = 'mysql:dbname=cheyun_cms;host=127.0.0.1'; $user = 'root'; $password = '111111'; //采用预处理+事务处理执行SQL操作 //1.连接数据库 try { $pdo = new PDO($dsn, $user, $password); $pdo->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION); } catch (PDOException $e) { die("数据库连接失败".$e->getMessage()); } //2.执行数据操作 try{ //开启事物,此时会关闭自动提交 $pdo->beginTransaction(); $sql = "insert into cy_log (logid, value, action, file) values (?, ?, ?, ?)"; $stmt = $pdo->prepare($sql); //传入参数 $stmt->execute(array(null,"test4","w",11)); $stmt->execute(array(null,"test5","w",11)); $stmt->execute(array(null,"test3","w",11)); //提交事物,并且 数据库连接返回到自动提交模式 $pdo->commit(); }catch(PDOException $e){ echo '执行失败'.$e->getMessage(); //如果数据库被设置成自动提交模式,rollback 在回滚事务之后将恢复自动提交模式。 //包括 MySQL 在内的一些数据库, 当在一个事务内有类似删除或创建数据表等 DLL 语句时,会自动导致一个隐式地提交。 //隐式地提交将无法回滚此事务范围内的任何更改。即 DDL 语句无法回滚 $pdo->rollback(); }
Example 2:
if...else...form
<?php $dsn = 'mysql:dbname=cheyun_cms;host=127.0.0.1'; $user = 'root'; $password = '111111'; //采用预处理+事务处理执行SQL操作 //1.连接数据库 try { $pdo = new PDO($dsn, $user, $password); } catch (PDOException $e) { die("数据库连接失败".$e->getMessage()); } //2.执行数据操作 //开启事物 $pdo->beginTransaction(); $sql = "insert into cy_log (logid, value, action, file) values (?, ?, ?, ?)"; $stmt = $pdo->prepare($sql); $datalist = array( array(null,"test9","w",11), array(null,"test10","w",11), array(null,"test11","w",11) ); //是否提交标志位 $isCommit = true; foreach($datalist as $data){ $stmt->execute($data); if($stmt->errorCode()>0){ //回滚 $pdo->rollback(); $isCommit = false; break; } } if($isCommit){ //提交事物 $pdo->commit(); }
Note:
The data table requires InnoDB type
The above is the detailed content of Example code sharing of how to implement transaction processing in PHP based on PDO. For more information, please follow other related articles on the PHP Chinese website!

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

如何在FastAPI中实现数据库连接和事务处理引言:随着Web应用程序的快速发展,数据库连接和事务处理成为了一个非常重要的主题。FastAPI是一个高性能的PythonWeb框架,因其快速和易于使用而受到开发者的喜爱。在本文中,我们将介绍如何在FastAPI中实现数据库连接和事务处理,以帮助您构建可靠和高效的Web应用程序。第一部分:数据库连接在FastA

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

转化方法:1、使用“mb_substr($url,stripos($url,"?")+1)”获取url的参数部分;2、使用“parse_str("参数部分",$arr)”将参数解析到变量中,并传入指定数组中,变量名转为键名,变量值转为键值。

MySQL和Oracle:事务处理能力的比较在数据库管理系统中,事务处理是一个关键的概念。事务是指一组数据库操作,这些操作要么全部完成,要么全部失败。因此,事务处理的能力对于数据库的稳定性和数据完整性非常重要。本文将比较MySQL和Oracle这两个主流的关系型数据库管理系统在事务处理能力方面的特点,并通过代码示例来说明。MySQL是一个开源的关系型数据库管

去除方法:1、使用substr_replace()函数将首位数字替换为空字符串即可,语法“substr_replace($num,"",0,1)”;2、用substr截取从第二位数字开始的全部字符即可,语法“substr($num,1)”。

深入剖析MongoDB的事务处理与并发控制机制摘要:MongoDB是一种流行的NoSQL数据库,它以其高性能和可扩展性而闻名。然而,MongoDB最初并不支持事务处理和并发控制,这在某些情况下可能引发数据一致性和完整性的问题。为了解决这些问题,MongoDB在其最新版本中引入了多文档事务处理和混合隔离级别,为开发人员提供了更好的并发控制机制。引言:事务处理和


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 Chinese version
Chinese version, very easy to use

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

WebStorm Mac version
Useful JavaScript development tools

Notepad++7.3.1
Easy-to-use and free code editor
