Skip to main content

1E 8.1 (on-premises)

Storage.Set

Method

Set

Module

Storage

Library

Core

Action

Set or change the value of the named persistent storage table.

Parameters

Name (string): The name of the persistent storage table. Case is not significant.

Value (table): The table contents to be written to, or overwritten in, the named persistent storage table.

Append (bool; optional, default false): Whether to append to whatever is already in the table (true) or overwrite it (false). Available from v8.0 onwards.

It is not an error to append if the table does not already exist; in this situation the parameter's value is irrelevent.

Warning

There is no check that the schema of the appended rows is the same as that of those already there.

MaxRowCount (int; optional, default 1000): When appending, limit the table to this maximum number of rows. Available from v8.0 onwards.

The range is 1 to the SelectRowsLimit configuration value (100000 by default). This can be specified only if Append is true. There is no limit when overwriting (i.e. when Append is explicitly or implicitly false).

Note

The truncation behaviour is different for v8.0 and for v8.1 onwards.

For v8.0 rows already in the table are never deleted when Append is true, and MaxRowCount only affects the addition of new rows - it never truncates. For example, if the table already contains 10 rows and we try to append more with MaxRowCount set to 5, then the table will still contain just the 10 original rows at the end of the operation. Also, if truncation does occur then it happens from the end of the appended table, i.e. "old" data is preserved.

For v8.1 onwards 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 MaxRowCount rows left in the table. For example, if the table originally contained rows 1 to 10 then we append rows 11 to 15 with MaxRowCount set to 6 then we end up with a table containing rows 10 to 15.

Return values

Name (string): The name of the new or updated persistent storage table.

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.

Version (a) not using Append, up to v5.2

@loggedOnUsers = Users.GetLoggedOnUsers();
@newEntries = SELECT *, datetime("now") AS Timestamp FROM @loggedOnUsers;
@storageName = SELECT "LoggedInAudit" AS Name;

// Store data
@found = Storage.Check(Name:@storageName);
IF (@found)
    @currentEntries = Storage.Get(Name:@storageName);
    @newEntries = @currentEntries + @newEntries;
ENDIF;
Storage.Set(Name:@storageName, Value:@newEntries);
Storage.Get(Name:@storageName);

Version (b) using Append, from v8.0 onwards

@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

  • Windows

  • Linux

  • MacOS

  • Solaris Intel

  • Solaris Sparc

  • Android

Notes