2022.1

Table Of Contents
Value Methods
Name Description
"AddValue" on page184 Creates a new KeySet by assigning Value to the key
KeyName in Group GroupName. Note that KeyName
must exist in GroupName, otherwise an error is raised.
See "AddKey" on page183 for information on adding a
key to a group. Upon successful completion, the method
returns the ID of the newly created KeySet.
"GetValue" on page187 Performs a lookup in group GroupName and retrieves
the first value for key KeyName that matches Condition.
The condition is specified using basic SQL WHERE
syntax. The Condition may be left empty in which case
the very first value found for the specified KeyName is
returned.
"SetValue" on page194 Updates multiple keysets in group GroupName by
setting the key KeyName to Value for all keysets that
match Condition. The condition is specified using basic
SQL WHERE syntax. The Condition may be left empty in
which case all keysets in GroupName are updated. Note
that KeyName must exist in GroupName, otherwise an
error is raised. The method returns an array of the keyset
ID's that were updated ([1,2] ), or an empty array ([] ) if no
keysets were updated.
"SetValueByID" on page195
Updates KeyName with Value in group GroupName,
where the keyset's ID matches the ID parameter.
KeyName must exist in GroupName, otherwise an error
is raised. The method returns the ID of the keyset that
was updated or -1 if the keyset was not updated.
Note that this method is functionally equivalent to using
"SetValue" on page194 with its Condition parameter set
to "ID=ID".
Page 180