update : 2015.11.03
php.shukuma.com검색:
|
maxdb_stmt_errormaxdb_stmt::error(PECL maxdb >= 1.0) maxdb_stmt_error -- maxdb_stmt::error — Returns a string description for last statement error 설명절차식 형식
string maxdb_stmt_error
( resource
$stmt
)객체 기반 형식 string $maxdb_stmt->error;
For the statement specified by stmt, maxdb_stmt_error() returns a containing the error message for the most recently invoked statement function that can succeed or fail. 반환값A string that describes the error. An empty string if no error occurred. 예제Example #1 객체 기반 형식
<?php Example #2 절차식 형식
<?php 위 예제의 출력 예시: Warning: maxdb_stmt_execute(): -4004 POS(23) Unknown table name:MYCITY [42000] <...> Error: POS(23) Unknown table name:MYCITY. 참고
|