The cubrid_errno and cubrid_error_code functions get the code of the error that occurred during the API execution. Usually, the error message can be fetched when the API returns FALSE.
int cubrid_errno ()
int cubrid_error_code ()
<?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\nError code: %d\nError msg: %s\n",
cubrid_error_code_facility(), cubrid_error_code(), cubrid_error_msg());
cubrid_disconnect($conn);
exit;
}
?>
The above example will output:
Error facility: 4
Error code: -2015
Error msg: Some parameter not binded