PHP逆引き大全 516の極意

データベースの極意 - Tips440 トランザクション管理する

登録タグ
PHP
Icon comment count 0
Icon stock count 0

6-5Propelの利用 Criteria編Tips440 トランザクション管理する

Level1

PointPropelが内部的に用いているPDOオブジェクトを利用する

Propelが内部的に用いているPDOオブジェクトを利用することで、トランザクション管理ができます。

PDO::inTransaction()PDO::begin
Transaction()
PDO::commit()PDO::rollback()を組み合わせて利用します。

詳しくは「389」を参照してください。

リスト1440.php
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>トランザクション管理する</title>
</head>
<body>
<?php
require_once("config.inc.php");
$con = Propel::getConn

出典情報

Medium

PHP逆引き大全 516の極意

  • 著者: 大家 正登, 茂木 健一, 鮫島 康浩, 谷中 志織

コメント

    コメントはありません