|
sqlsrv_begin_transactionBegins a database transaction 説明
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. パラメータ
戻り値
成功した場合に 例
例1 sqlsrv_begin_transaction example The following example demonstrates how to use sqlsrv_begin_transaction together with sqlsrv_commit and sqlsrv_rollback.
上の例の出力は、 たとえば以下のようになります。 参考
|