What is the RESULT keyword in PLSQL?

In the Oracle Documentation, I found the RESULT keyword, but I could not find the documentation about this.

+4
source share
1 answer

There are two references to RESULT in the main index, but they do not lead to anything interesting (code examples for Transparent Gateway ).

Of course, RESULT is not included in the V $ RESERVED_WORD view. In addition, we can use RESULT in our own code without problems:

 SQL> declare 2 result pls_integer; 3 begin 4 result := some_number; 5 dbms_output.put_line(result); 6 dbms_output.put_line('That' NumberWang!'); 7 end; 8 / 16912 That NumberWang! PL/SQL procedure successfully completed. SQL> 

tl; dr Forget it.

+7
source

Source: https://habr.com/ru/post/1384097/


All Articles