Service
|
Description
|
||||
---|---|---|---|---|---|
AddDataTableEntry (TAGS tags, VALUES values)
|
Pass in VALUES, and optionally tags. Boolean return indicates success or failure.
|
||||
AddDataTableEntries
|
Adds multiple data table entries.
|
||||
AddOrUpdateDataTableEntry (TAGS tags, VALUES values)
|
Pass in VALUES , and optionally tags. Returns a STRING value of the streamID of the new or updated entry in the data table. Updates a row if it exists, otherwise a row is added.
|
||||
AddOrUpdateDataTableEntries
|
Adds or updates multiple data table entries. Updates a row if it exists, otherwise a row is added. Primary keys must match in order to update.
|
||||
AssignDataTableEntries
|
Replaces existing data table entries.
|
||||
DeleteDataTableEntry (STRING keyvalue)
|
Deletes a single entry based on the key value. Boolean return indicates success or failure.
|
||||
DeleteDataTableEntries
|
Deletes multiple entries that match the first row of values provided in the infotable input parameter. For example, if a data table has a field named Int01 and three entries have Int01 set to 10. When executed, DeleteDataTableEntries will delete all three entries if 10 is specified as the delete criteria.
|
||||
FindDataTableEntries
|
Searches for indexes only, so it may be faster to use than QueryDataTableEntries service.
|
||||
GetDataTableEntries (NUMBER maxItems)
|
Returns that latest entries up to the maximum number of items requested.
|
||||
GetDataTableEntry (STRING keyvalue)
|
Returns an infotable of one row with the matching entry.
|
||||
GetFieldNames
|
returns a list of field names associated with this data table.
|
||||
PurgeDataTableEntries
|
Removes all entries for this data table. Boolean return indicates success or failure.
|
||||
QueryDataTableEntries (NUMBER maxItems, STRING queryExpression, TAGS tags, VALUES query)
|
Returns an infotable of records that match the request parameters.
|
||||
SearchDataTableEntries
|
Returns all data table entries that match the search query parameters. The searchExpression is the key to this service, it includes full text searching for STRING and TEXT fields only. The following filers can be used for the searchExpression: + (plus sign), case sensitive, ? (question mark), % (percent sign), AND, and OR.
|
||||
UpdateDataTableEntry (TAGS tags, VALUES values)
|
Pass in values, and optionally tags. Updates a row if it exists.
|