本文實(shí)例講述了PHP ADODB實(shí)現(xiàn)事務(wù)處理功能。分享給大家供大家參考,具體如下:
一、代碼
adodb.inc.php可從官方網(wǎng)站http://adodb.sourceforge.net/ 下載。
或者點(diǎn)擊此處本站下載。
conn.php:
?php
include_once ('../adodb5/adodb.inc.php');
$conn = ADONewConnection('mysql');
$conn -> PConnect('localhost','root','root','db_database14');
$conn -> execute('set names gb2312');
?>
trans.php:
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
html xmlns="http://www.w3.org/1999/xhtml">
head>
meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
title>處理事務(wù)/title>
style type="text/css">
!--
body,td,th {
font-size: 12px;
}
body {
margin-left: 10px;
margin-top: 10px;
margin-right: 10px;
margin-bottom: 10px;
}
-->
/style>/head>
body>
?php
include_once 'conn/conn.php'; //載入數(shù)據(jù)庫鏈接文件
$conn -> BeginTrans(); //開始事務(wù)處理
$sql = 'delete from tb_object where id = 3'; //sql刪除語句
$rst = $conn -> execute($sql) or die('execute error: '.$conn -> ErrorMsg()); //執(zhí)行刪除語句
$num = $conn -> Affected_rows(); //查看被更新的記錄數(shù)
if(false !== $rst){ //如果$rst不為假
if($num != 0){ //如果$num不為0,說明刪除成功
$conn -> CommitTrans(); //執(zhí)行提交
echo '刪除成功!';
exit();
}else{ //如果$num為0,說明沒有刪除記錄
echo '沒有數(shù)據(jù),或數(shù)據(jù)已刪除';
exit();
}
}else{ //如果發(fā)生意外
$conn -> RollbackTrans(); //執(zhí)行回滾操作
echo '出現(xiàn)意外。';
}
?>
/body>
/html>
二、運(yùn)行結(jié)果
刪除成功!
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《php+mysql數(shù)據(jù)庫操作入門教程》、《PHP基于pdo操作數(shù)據(jù)庫技巧總結(jié)》、《PHP+MongoDB數(shù)據(jù)庫操作技巧大全》、《php+Oracle數(shù)據(jù)庫程序設(shè)計(jì)技巧總結(jié)》、《php+mssql數(shù)據(jù)庫程序設(shè)計(jì)技巧總結(jié)》、《php+redis數(shù)據(jù)庫程序設(shè)計(jì)技巧總結(jié)》、《php+mysqli數(shù)據(jù)庫程序設(shè)計(jì)技巧總結(jié)》及《php常見數(shù)據(jù)庫操作技巧匯總》
希望本文所述對大家PHP程序設(shè)計(jì)有所幫助。
您可能感興趣的文章:- PHP ADODB實(shí)現(xiàn)分頁功能簡單示例
- PHP程序中使用adodb連接不同數(shù)據(jù)庫的代碼實(shí)例
- php中adodbzip類實(shí)例
- PHP數(shù)據(jù)庫萬能引擎類adodb配置使用以及實(shí)例集錦
- php adodb連接不同數(shù)據(jù)庫
- 常用的php ADODB使用方法集錦
- PHP中ADODB類詳解
- 用ADODB來讓PHP操作ACCESS數(shù)據(jù)庫的方法
- PHP ADODB生成HTML表格函數(shù)rs2html功能【附錯(cuò)誤處理函數(shù)用法】