update : 2015.11.03
php.shukuma.com검색:
|
sqlsrv_begin_transaction(No version information available, might only be in Git) sqlsrv_begin_transaction — Begins 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 committ/roll back transactions. For more information, see » SQLSRV Transactions. 반환값
성공 시 예제
Example #1 sqlsrv_begin_transaction() example The following example demonstrates how to use sqlsrv_begin_transaction() together with sqlsrv_commit() and sqlsrv_rollback().
<?php 위 예제의 출력 예시: 참고
|