cubrid_error, cubrid_error_msg

Description

The cubrid_error and cubrid_error_msg functions get the error message that occurred during the API execution. Usually, the error message can be fetched when the API returns FALSE.

Syntax

string cubrid_error ()

string cubrid_error_msg ()

Return Value
Example

<?php

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

 

if (!@cubrid_schema($conn, 100000)) {

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

Error code: -1015

Error msg: Invalid T_CCI_SCH_TYPE value

See Also