From 17382b365780a8e377e187c0705a5714ecfbe451 Mon Sep 17 00:00:00 2001 From: "Daniel P. Brown" Date: Fri, 28 Nov 2008 23:07:27 +0000 Subject: [PATCH] Addresses and fixes Bug #46690. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@270053 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/pdo/transactions.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/pdo/transactions.xml b/reference/pdo/transactions.xml index b759b292d6..7cf965646d 100644 --- a/reference/pdo/transactions.xml +++ b/reference/pdo/transactions.xml @@ -1,5 +1,5 @@ - + Transactions and auto-commit @@ -95,8 +95,8 @@ try { complex queries to extract data, and possibly use that information to build up more updates and queries; while the transaction is active, you are guaranteed that no one else can make changes while you are in the - middle of your work. In truth, this isn't 100% correct, but it is a - good-enough introduction, if you've never heard of transactions before. + middle of your work. For further reading on transactions, refer to the + documentation provided by your database server.