|
sqlsrv_begin_transactionBegins a database transaction Beschreibung
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 committ/roll back transactions. For more information, see » SQLSRV Transactions. Parameter-Liste
Rückgabewerte
Gibt bei Erfolg Beispiele
Beispiel #1 sqlsrv_begin_transaction example The following example demonstrates how to use sqlsrv_begin_transaction together with sqlsrv_commit and sqlsrv_rollback.
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie: Siehe auch
|