8.5

RemoveKeySets
Deletes all keysets in GroupName that match Condition. The condition is specified using basic SQL
WHERE syntax. Condition may be left empty, in which case all keysets in GroupName are deleted. The
method returns the number of keysets that were deleted.
Syntax
RemoveKeySets(GroupName: string, Condition: string): integer
Examples
JavaScript
repoObject.RemoveKeySets("Users", 'Gender="M"');
VB Script
repoObject.RemoveKeySets "Users", "Gender='M'"
RenameGroup
Renames group oldName to newName. While this operation has no impact on the data stored in the
specified group, it does require any plugin and/or script that uses oldName to be modified to refer to
newName.
Syntax
RenameGroup(oldName, newName: string)
Examples
JavaScript
repoObject.RenameGroup("Users", "Customers");
VB Script
repoObject.RenameGroup "Users", "Customers"
RenameKey
Renames key oldName to newName in group GroupName. While this operation has no impact on the data
stored in that Group, it does require any plugin and/or script that uses oldName to be modified to refer to