update : 2015.11.03
php.shukuma.com검색:
|
cubrid_error_code_facility(PECL CUBRID >= 8.3.0) cubrid_error_code_facility — Get the facility code of error 설명
int cubrid_error_code_facility
( void
)
The cubrid_error_code_facility() function is used to get the facility code (level in which the error occurred) from the error code of the error that occurred during the API execution. Usually, you can get the error code when API returns false as its return value. 인수이 함수는 인수가 없습니다. 반환값Facility code of the error code that occurred: CUBRID_FACILITY_DBMS, CUBRID_FACILITY_CAS, CUBRID_FACILITY_CCI, CUBRID_FACILITY_CLIENT
예제Example #1 cubrid_error_code_facility() example
<?php 위 예제의 출력: Error facility: 1 Error code: -493 Error msg: Syntax: In line 1, column 15 before END OF STATEMENT Syntax error: unexpected 'unknown' 참고
|