Storage.Set
Method | |
---|---|
Module | Storage |
Library | Core |
Action | Set or change the value of the named persistent storage table. |
Parameters | |
| |
It is not an error to append if the table does not already exist; in this situation the parameter's value is irrelevent. WarningThere is no check that the schema of the appended rows is the same as that of those already there. | |
The range is 1 to the SelectRowsLimit configuration value (100000 by default). This can be specified only if NoteRegarding truncation behaviour, the new (appended) data is considered more important than the old (original) data, so rows are deleted from the front of the table. Also, after the append there will be no more than | |
Return values | |
Examples | A simple example. @table = Agent.GetSummary(); Storage.Set(Name: "Agent_Summary.Oct2018", Value: @table); The method overwrites whatever was previously in the table. If you want to accumulate data by appending, these show examples of a task that would be run periodically to record who is logged on at that time. They also return the accumulated data. Using Append @loggedOnUsers = Users.GetLoggedOnUsers(); @newEntries = SELECT *, datetime("now") AS Timestamp FROM @loggedOnUsers; @storageName = SELECT "LoggedInAudit" AS Name; // Store data Storage.Set(Name:@storageName, Value:@newEntries, Append:true); Storage.Get(Name:@storageName); |
Platforms |
|
Notes |