Query: cubrid_error_code
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
CUBRID_ERROR_CODE(3) 1 CUBRID_ERROR_CODE(3) cubrid_error_code - Get error code for the most recent function callSYNOPSISint cubrid_error_code (void )DESCRIPTIONThe cubrid_error_code(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.PARAMETERSThis function has no parameters.RETURN VALUESError code of the error that occurred, or 0 (zero) if no error occurred.EXAMPLESExample #1 cubrid_error_code(3) example <?php $conn = cubrid_connect("localhost", 33000, "demodb"); $req = cubrid_prepare($conn , "SELECT * FROM code WHERE s_name=?"); $req = @cubrid_execute($req); if (!$req) { printf("Error facility: %d Error code: %d Error msg: %s ", cubrid_error_code_facility(), cubrid_error_code(), cubrid_error_msg()); cubrid_disconnect($conn); exit; } ?> The above example will output: Error facility: 4 Error code: -30015 Error msg: Some parameter not bindedSEE ALSOcubrid_error_code_facility(3), cubrid_error_msg(3). PHP Documentation Group CUBRID_ERROR_CODE(3)
Related Man Pages |
---|
cubrid_commit(3) - php |
cubrid_errno(3) - php |
cubrid_error(3) - php |
cubrid_get_server_info(3) - php |
cubrid_num_fields(3) - php |
Similar Topics in the Unix Linux Community |
---|
Problem joining 2 files |
Non Numeric Argument Error |
Excluding certain paras from a file |
Error using function in AWK code |
Logical Error With Type Conversion In C |