Definition of SQLCODE. Meaning of SQLCODE. Synonyms of SQLCODE

Here you will find one or more explanations in English for the word SQLCODE. Also in the bottom left of the page several parts of wikipedia pages related to the word SQLCODE and, of course, SQLCODE synonyms and on the right images related to the word SQLCODE.

Definition of SQLCODE

No result for SQLCODE. Showing similar results...

Meaning of SQLCODE from wikipedia

- In very early versions of the SQL standard the return code was called SQLCODE and used a different coding schema. The following table lists the standard-conforming...
- below), the DBMS returns a SQLSTATE '02000' (usually accompanied by an SQLCODE +100) to indicate the end of the result set. The final step involves closing...
- DataWindow option. Example: UPDATE my_employee SET STATUS = 'A'; IF sqlca.sqlcode<>0 THEN ... "Dynamic SQL" This is a form of parameterized SQL, where the...
- NUMBER OF ROWS AFFECTED IS 3 STATEMENT EXECUTION WAS SUCCESSFUL, SQLCODE IS 0 -----------+-----------+-----------+-----------+ The Output dataset...
- optional WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('Error Code is ' || TO_CHAR(sqlcode)); DBMS_OUTPUT.PUT_LINE('Error Message is ' || sqlerrm); END; The symbol...