update : 2015.11.03
php.shukuma.com검색:
|
sqlsrv_rows_affected(No version information available, might only be in Git) sqlsrv_rows_affected — Returns the number of rows modified by the last INSERT, UPDATE, or DELETE query executed 설명
int sqlsrv_rows_affected
( resource
$stmt
)Returns the number of rows modified by the last INSERT, UPDATE, or DELETE query executed. For information about the number of rows returned by a SELECT query, see sqlsrv_num_rows(). 인수
반환값
Returns the number of rows affected by the last INSERT, UPDATE, or DELETE query.
If no rows were affected, 0 is returned. If the number of affected rows cannot
be determined, -1 is returned. If an error occurred, 예제
Example #1 sqlsrv_rows_affected() example
<?php |