maxdb_errno maxdb->errno Returns the error code for the most recent function call Description Procedural style: intmaxdb_errno resourcelink Object oriented style (property): maxdb interrno The maxdb_errno function will return the last error code for the most recent MaxDB function call that can succeed or fail with respect to the database link defined by the link parameter. If no errors have occured, this function will return zero. Return values An error code value for the last call, if it failed. zero means no error occurred. See also maxdb_connect_errno, maxdb_connect_error, maxdb_error, maxdb_sqlstate Example Object oriented style query("SELECT xxx FROM hotel.city")) { printf("Errorcode: %d\n", $maxdb->errno); } /* close connection */ $maxdb->close(); ?> ]]> Procedural style ]]> The above examples would produce the following output: Errorcode: -4005 ]]>