PHP逆引き大全 516の極意

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

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

6-4Propelの利用 基本編Tips427 トランザクション管理する

Level2

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

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

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

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

リスト1427.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::getConnection(BookPeer:

出典情報

Medium

PHP逆引き大全 516の極意

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

コメント

    コメントはありません