@@ -92,24 +92,24 @@ following table describes these methods:
92
92
:header-rows: 1
93
93
94
94
* - Method
95
- - Description
95
+ - Description
96
96
97
97
* - ``startTransaction()``
98
- - | Starts a new transaction on this session. The session
99
- must be passed into each operation within the transaction, or
100
- the operation will run outside of the transaction.
101
- |
102
- | You can set transaction options by passing an options parameter.
98
+ - | Starts a new transaction on this session. The session
99
+ must be passed into each operation within the transaction, or
100
+ the operation will run outside of the transaction.
101
+ |
102
+ | You can set transaction options by passing an options parameter.
103
103
104
104
* - ``commitTransaction()``
105
- - | Commits the active transaction for this session. This method returns an
106
- error if there is no active transaction for the session, the
107
- transaction was previously ended, or if there is a write conflict.
105
+ - | Commits the active transaction for this session. This method returns an
106
+ error if there is no active transaction for the session, the
107
+ transaction was previously ended, or if there is a write conflict.
108
108
109
109
* - ``abortTransaction()``
110
- - | Ends the active transaction for this session. This method returns an
111
- error if there is no active transaction for the session or if the
112
- transaction was committed or ended.
110
+ - | Ends the active transaction for this session. This method returns an
111
+ error if there is no active transaction for the session or if the
112
+ transaction was committed or ended.
113
113
114
114
.. _php-txn-example:
115
115
@@ -148,25 +148,21 @@ completes the following actions:
148
148
:copyable:
149
149
150
150
.. input:: /includes/write/transaction.php
151
- :language: php
152
- :dedent:
153
- :start-after: begin-txn
154
- :end-before: end-txn
155
- :emphasize-lines: 1, 4
151
+ :language: php
152
+ :dedent:
153
+ :start-after: begin-txn
154
+ :end-before: end-txn
155
+ :emphasize-lines: 1, 4
156
156
157
157
.. output::
158
- :language: console
159
- :visible: false
158
+ :language: console
159
+ :visible: false
160
160
161
- Successfully performed transaction!
162
- Summary: SAVINGS +1000 CHECKING -1000
161
+ Successfully performed transaction!
162
+ Summary: SAVINGS +1000 CHECKING -1000
163
163
164
164
.. sharedinclude:: dbx/transactions-parallelism.rst
165
165
166
- .. replacement:: driver-specific-content
167
-
168
-
169
-
170
166
Additional Information
171
167
----------------------
172
168
0 commit comments