|
sqlsrv_begin_transactionBegins a database transaction Description
bool sqlsrv_begin_transaction(resource
$conn )The transaction begun by sqlsrv_begin_transaction includes all statements that were executed after the call to sqlsrv_begin_transaction and before calls to sqlsrv_rollback or sqlsrv_commit. Explicit transactions should be started and committed or rolled back using these functions instead of executing SQL statements that begin and commit/roll back transactions. For more information, see » SQLSRV Transactions. Parameters
Return Values
Returns Examples
Example #1 sqlsrv_begin_transaction example The following example demonstrates how to use sqlsrv_begin_transaction together with sqlsrv_commit and sqlsrv_rollback.
The above example will output something similar to: See Also
|