mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Closer to Wez's original intent... making a connection does not enable
one to understand transactions; rather, once armed with the knowledge of connecting, one must understand the power of transactions before wielding SQL queries with reckless abandon. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@198664 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
29f219c0e1
commit
3d07b38112
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version='1.0' encoding='iso-8859-1'?>
|
||||
<!-- $Revision: 1.42 $ -->
|
||||
<!-- $Revision: 1.43 $ -->
|
||||
<!-- Purpose: database.abstract -->
|
||||
<!-- Membership: pecl, bundled -->
|
||||
<!-- State:experimental -->
|
||||
|
@ -347,7 +347,7 @@ $dbh = new PDO('mysql:host=localhost;dbname=test', $user, $pass, array(
|
|||
<section id='pdo.transactions'>
|
||||
<title>Transactions and auto-commit</title>
|
||||
<para>
|
||||
Now that you're connected via PDO, you should be able to understand how PDO
|
||||
Now that you're connected via PDO, you must understand how PDO
|
||||
manages transactions before you start issuing queries. If you've never
|
||||
encountered transactions before, they offer 4 major features: Atomicity,
|
||||
Consistency, Isolation and Durability (ACID). In layman's terms, any work
|
||||
|
|
Loading…
Reference in a new issue