cubrid_error_code_facility

Description

The cubrid_error_code_facility function gets a facility code (level at which the error occurred) from the code of the error that occurred during the API execution. Usually, the error code can be fetched when the API returns FALSE.

Syntax

int cubrid_error_code_facility ()

Return Value
Example

<?php

$conn = cubrid_connect("localhost", 33000, "demodb");

$req = @cubrid_execute($conn, "SELECT * FROM unknown");

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: 1

Error code: -493

Error msg: Syntax: syntax error, unexpected UNKNOWN

See Also