|
PHP5中文手册
maxdb_sqlstatemaxdb->sqlstate(PECL maxdb:1.0-7.6.00.38) maxdb->sqlstate — Returns the SQLSTATE error from previous MaxDB operation 说明Procedural style:
string maxdb_sqlstate
( resource $link
)
Object oriented style (property): maxdb
string$sqlstate;
Returns a string containing the SQLSTATE error code for the last error. The error code consists of five characters. '00000' means no error. The values are specified by ANSI SQL and ODBC.
返回值Returns a string containing the SQLSTATE error code for the last error. The error code consists of five characters. '00000' means no error. 范例Example#1 Object oriented style
<?php Example#2 Procedural style
<?php The above examples would produce the following output:
|