ProtocolParameter Type
CRUD façade for the protocol_parameter association table. Primary key: (protocol_id, position).
Static members
| Static member |
Description
|
Full Usage:
ProtocolParameter.delete (driver, protocolId, position)
Parameters:
ISqliteDriver
protocolId : string
position : int
|
Deletes the row with the given composite key.
|
Full Usage:
ProtocolParameter.get (driver, protocolId, position)
Parameters:
ISqliteDriver
protocolId : string
position : int
Returns: ProtocolParameterRow option
|
Returns the row with the given composite key, or
|
Full Usage:
ProtocolParameter.insert (driver, row)
Parameters:
ISqliteDriver
row : ProtocolParameterRow
|
Inserts a new row.
|
Full Usage:
ProtocolParameter.list driver
Parameters:
ISqliteDriver
Returns: ProtocolParameterRow array
|
|
Full Usage:
ProtocolParameter.update (driver, row)
Parameters:
ISqliteDriver
row : ProtocolParameterRow
|
Updates the row identified by
|
ProcessCore