Skip to content

Clear_Record

Clears the record. The complete record is removed from memory. After a Clear_Record only a pointer to an empty location exists.

PROCEDURE Clear_Record (   
   record_  IN OUT type_record_ )

Parameters

record_
Foundation1 record.

Example

DECLARE  
   AM  Plsqlap_Record_API.type_record_;  
BEGIN  
   ...  
   Plsqlap_Record_API.Clear_Record(AM);  
   ...  
END;