Skip to content

Exists_Tmp_Record__

Used for internal tests. Ping_Result__ creates (and removes) a row in the table PLSQLAP_ENVIRONMENT_TAB.

Procedure Exists_Tmp_Record__ (  
   exists_ OUT VARCHAR2,  
   guid_   IN  VARCHAR2 );

Return

Returns TRUE if a record exists, FALSE if not.

Example

SQL>set serverout on  

SQL> l  
1 DECLARE  
2    exists_ VARCHAR2(5);  
3 BEGIN  
4    Plsqlap_Server_API.Exists_Tmp_Record__(exists_,'228307E9F9C9496A9DE6EFF438B9B8A5');  
5    dbms_output.put_line(exists_);  
6* END;  
SQL> /  
TRUE  

PL/SQL procedure successfully completed.