SQLCODE Function
2989 단어 function
The function
SQLCODE
returns the number code of the most recent exception. For internal exceptions,
SQLCODE
returns the number of the associated Oracle error. The number that SQLCODE
returns is negative unless the Oracle error is no data found, in which case SQLCODE
returns +100
. For user-defined exceptions, SQLCODE
returns +1
, or a value you assign if the exception is associated with an Oracle error number through pragma EXCEPTION_INIT
. Syntax
sqlcode function::=
Description of the illustration sqlcode_function.gif
Usage Notes
SQLCODE
is only useful in an exception handler. Outside a handler, SQLCODE
always returns 0
. SQLCODE
is especially useful in the OTHERS
exception handler, because it lets you identify which internal exception was raised. You cannot use SQLCODE
directly in a SQL statement. Assign the value of SQLCODE
to a local variable first. When using pragma
RESTRICT_REFERENCES
to assert the purity of a stored function, you cannot specify the constraints WNPS
and RNPS
if the function calls SQLCODE
. Examples
Example 13-6 shows the use of
SQLCODE
and SQLERRM
. Example 13-6 Using SQLCODE and SQLERRM
DECLARE
name employees.last_name%TYPE;
v_code NUMBER;
v_errm VARCHAR2(64);
BEGIN
SELECT last_name INTO name FROM employees WHERE employee_id = 1000;
EXCEPTION
WHEN OTHERS THEN
v_code := SQLCODE;
v_errm := SUBSTR(SQLERRM, 1 , 64);
DBMS_OUTPUT.PUT_LINE('The error code is ' || v_code || '- ' || v_errm);
END;
/
For examples, see the following:
Example 10-11, "Displaying SQLCODE and SQLERRM"
Related Topics
"Exception Definition" "SQLERRM Function" "Retrieving the Error Code and Error Message: SQLCODE and SQLERRM"
from:http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14261/sqlcode_function.htm
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
콜백 함수를 Angular 하위 구성 요소에 전달이 예제는 구성 요소에 함수를 전달하는 것과 관련하여 최근에 직면한 문제를 다룰 것입니다. 국가 목록을 제공하는 콤보 상자 또는 테이블 구성 요소. 지금까지 모든 것이 구성 요소 자체에 캡슐화되었으며 백엔드에 대한 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.