Query: cubrid_errno
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
CUBRID_ERRNO(3) 1 CUBRID_ERRNO(3) cubrid_errno - Return the numerical value of the error message from previous CUBRID operationSYNOPSISint cubrid_errno ([resource $conn_identifier])DESCRIPTIONReturns the error number from the last CUBRID function. The cubrid_errno(3) function is used to get the error code of the error that occurred during the API execution. Usually, it gets the error code when API returns false as its return value.PARAMETERSo $conn_identifier - The CUBRID connection identifier. If the connection identifier is not specified, the last connection opened by cubrid_connect(3) is assumed.RETURN VALUESReturns the error number from the last CUBRID function, or 0 (zero) if no error occurred.EXAMPLESExample #1 cubrid_errno(3) example <?php $con = cubrid_connect('localhost', 33000, 'demodb', 'dba', ''); $req = cubrid_execute($con, "select id, name from person"); if ($req) { while (list ($id, $name) = cubrid_fetch($req)) echo $id, $name; } else { echo "Error Code: ", cubrid_errno($con); echo "Error Message: ", cubrid_error($con); } ?> The above example will output: Error Code: -493 Error Message: Syntax: Unknown class "person". select id, [name] from personSEE ALSOcubrid_error(3), cubrid_error_code(3), cubrid_error_msg(3). PHP Documentation Group CUBRID_ERRNO(3)
Related Man Pages |
---|
cubrid_connect_with_url(3) - php |
cubrid_client_encoding(3) - php |
cubrid_close_request(3) - php |
cubrid_connect(3) - php |
cubrid_disconnect(3) - php |
Similar Topics in the Unix Linux Community |
---|
Error Message during Diag |
Error when running script |
Syntax error |
Error with Expression |
0403-057 Syntax error at line 17 : `(' is not expected. |