Description

Non-key read operations read the only record from a database table into a standard details struct.

Non-key operations, as the name suggests, do not take a key parameter. They operate by executing SQL statements which do not have a where clause; i.e. they operate on all rows on a table.

For a non-key read operation, there should be a single row on the table - this type of operation is typically used to read a value from a control table which contains a single record.

There is no such thing as a non-key insert operation since insert operations do not require a key parameter.