Description
Creates and stores a new savepoint for the current transaction. You can add multiple savepoints by calling this function multiple times.
Returns
Nothing
Category
Function Syntax
TransactionSetSavepoint(savepoint)<helponly></helponly>
See also
TransactionCommit, TransactionRollback
History
ColdFusion 9: Added this function.
Parameters
Parameter |
Description |
---|---|
savepoint |
An optional string identifier for the savepoint. Savepoints let you roll back portions of a transaction. |
Usage
You can call this function only from within an active transaction.
Example
See the example for TransactionCommit.