Storage.Get
| Method | |
|---|---|
| Module | Storage | 
| Library | Core | 
| Action | Indicate whether a persistent storage table of the specified name is present and return its contents if present. | 
| Parameters |   | 
| Return values |   | 
| Example | @found = Storage.Check(Name: "2018.Sept.AdobeUsers");
IF NOT (@found)
    SELECT "Table not found" AS Status;
ELSE
    @table = Storage.Get(Name: "2018.Sept.AdobeUsers");
    IF NOT (@table)
        SELECT "Table is empty" AS Status;
    ELSE
        SELECT "Table retrieved and has content" AS Status;
    ENDIF;
ENDIF; | 
| Platforms | 
 | 
| Notes | This method can be used with the SCALE  |