update : 2015.11.03
php.shukuma.com검색:
|
maxdb_stmt_errnomaxdb_stmt::errno(PECL maxdb >= 1.0) maxdb_stmt_errno -- maxdb_stmt::errno — Returns the error code for the most recent statement call 설명절차식 형식
int maxdb_stmt_errno
( resource
$stmt
)객체 기반 형식 int $maxdb_stmt->errno;
For the statement specified by stmt, maxdb_stmt_errno() returns the error code for the most recently invoked statement function that can succeed or fail.
반환값An error code value. Zero means no error occurred. 예제Example #1 객체 기반 형식
<?php Example #2 절차식 형식
<?php 위 예제의 출력 예시: Warning: maxdb_stmt_execute(): -4004 POS(23) Unknown table name:MYCITY [42000] <...> Error: -4004. 참고
|