AppRecord ReadByUUID() Method

Reads the item using the UUID column, if it exists.

Function Signature

 ReadByUUID( itemUUID )

Parameters

Parameter Type Description

itemUUID

string

The UUID value that is passed in.

Return

Type Description

None

Technical Details

SBM ModScript version: 11.3.

Example

var uuidRead = record.ReadByUUID(itemUUID);

Notes

If the table is cached by Application Engine, the record may be read from the cache instead of the database.

Related Topics

AppRecord