update : 2015.11.03
php.shukuma.com검색:
|
PDOStatement::errorCode(PHP 5 >= 5.1.0, PECL pdo >= 0.1.0) PDOStatement::errorCode — Fetch the SQLSTATE associated with the last operation on the statement handle 설명
public string PDOStatement::errorCode
( void
)
반환값Identical to PDO::errorCode(), except that PDOStatement::errorCode() only retrieves error codes for operations performed with PDOStatement objects. 예제
Example #1 Retrieving an SQLSTATE code
<?php 위 예제의 출력: PDOStatement::errorCode(): 42S02 참고
|