Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Developer Documentation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
brienne
Developer Documentation
Commits
04d1af92
Commit
04d1af92
authored
7 years ago
by
Sean Madsen
Browse files
Options
Downloads
Patches
Plain Diff
Second pass of clean up
parent
55cf0e90
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/framework/database/transactions.md
+20
-10
20 additions, 10 deletions
docs/framework/database/transactions.md
with
20 additions
and
10 deletions
docs/framework/database/transactions.md
+
20
−
10
View file @
04d1af92
...
...
@@ -10,7 +10,13 @@ some background material like:
-
<http://en.wikipedia.org/wiki/Database_transaction>
-
<http://dev.mysql.com/doc/refman/5.1/en/commit.html>
## Example: Wrapping code in a transaction (exception-safe helper; recommended for v4.6+)
## Examples
### Wrapping code in a transaction
#### Exception-safe helper
(recommended for v4.6+)
```
php
function
myBusinessOperation
()
{
...
...
@@ -48,13 +54,13 @@ function myBusinessOperation() {
}
```
##
Example: Wrapping code in a transaction (p
rocedural style
)
##
## P
rocedural style
General rules:
-
Mark the beginning of a transaction with
"$tx =
new CRM_Core_Transaction()
"
.
-
Mark the transaction as failed (
"
$tx-
>
rollback()
"
) when an error
-
Mark the beginning of a transaction with
`$tx =
new CRM_Core_Transaction()
`
.
-
Mark the transaction as failed (
`
$tx-
>
rollback()
`
) when an error
is detected
-
Continue reporting and handling errors (by returning error-codes,
throwing exceptions, etc)
...
...
@@ -98,7 +104,7 @@ instantiating `CRM_Core_Transaction`, it will issue a `BEGIN`
automatically. When the function terminates (or, more specifically, when
`$tx`
destructs), it will issue a
`COMMIT`
or
`ROLLBACK`
.
##
Example:
Combining transactions
##
#
Combining transactions
When writing business-logic, each business operation should generally be
executed within a transaction – for example, when a constituent fills in
...
...
@@ -181,7 +187,9 @@ This has a few important properties:
transaction will be rolled back – leaving no contact records, no
participant records, etc – and an error will be returned.
## Example: Nesting transactions (v4.6+)
### Nesting transactions
(v4.6+)
In some cases, it may be appropriate to use a
**nested**
transaction or
[
SAVEPOINT
](
http://dev.mysql.com/doc/refman/5.1/en/savepoint.html
)
s.
...
...
@@ -249,7 +257,7 @@ function importBatchOfContacts($contacts, $maxErrors, &$erroneousContacts) {
- `registerNewContactForEvent` terminates – and therefore $tx is destroyed, and **the SQL `ROLLBACK` is executed**
##
Example:
Abnormal termination
##
#
Abnormal termination
In some exceptional circumstances, program execution terminates
abnormally – which prevents the normal transaction logic from managing
...
...
@@ -268,7 +276,9 @@ static function abend($code) {
}
```
## Special Topics: `TRUNCATE` and `ALTER` force immediate commit
## Special Topics
### `TRUNCATE` and `ALTER` force immediate commit
In MySQL, changes to the schema will cause pending transactions to
commit immediately (regardless of what Civi would normally do for
...
...
@@ -276,7 +286,7 @@ transactions) – so installation of new extensions, modification of
custom-data, and cache-resets would be likely to interfere with
transaction management.
##
Special Topics:
Batching and imports
##
#
Batching and imports
If you are serially processing a large number of 'rows', despite the
additional overhead it is normally more appropriate to put a transaction
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment