purge

purge();

The purge method of the MemberKeyDictionary class deletes all objects in a member key dictionary and clears the dictionary; that is, size = 0.

The objects that are removed are physically deleted.

The following example shows the use of the purge method.

unload() updating;
begin
    beginTransaction;
        self.customerDict.purge;
    commitTransaction;
end;