한국어 Login Register

Versions available for this page: CUBRID 8.2.1  |  CUBRID 8.3.0  |  CUBRID 8.3.1  |  CUBRID 8.4.0 |  CUBRID 8.4.1  | 

cubrid_errno, cubrid_error_code

Description

The cubrid_errno() function or the cubrid_error_code() function is used to get the code of the error that occurred during the API execution. Usually, the error message can be fetched when the API returns FALSE.

Syntax

int cubrid_errno ()

int cubrid_error_code ()

Return Value
  • Error code
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\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

See Also