Storage.Delete
| Method | |
|---|---|
| Module | Storage | 
| Library | Core | 
| Action | Removes an existing user defined persistent storage table. | 
| Parameters |   | 
| Return values | Name (string): The table's name if the storage table is deleted from persistent storage, else nothing. | 
| Example | @storageName = SELECT "LoggedInAudit" AS Name;
@result = Storage.Delete(Name:@storageName);
IF (@result)
    SELECT @storageName.Name ||" Table deleted" AS Status FROM @storageName;
ELSE
    SELECT @storageName.Name ||" Table not found" AS Status FROM @storageName;
ENDIF; | 
| Platforms | 
 | 
| Notes | This method can be used with the SCALE  |