ProcessParameterValue Type
CRUD façade for the process_parameter_value association table. Primary key: (process_id, position).
Static members
| Static member |
Description
|
Full Usage:
ProcessParameterValue.delete (driver, processId, position)
Parameters:
ISqliteDriver
processId : string
position : int
|
Deletes the row with the given composite key.
|
Full Usage:
ProcessParameterValue.get (driver, processId, position)
Parameters:
ISqliteDriver
processId : string
position : int
Returns: ProcessParameterValueRow option
|
Returns the row with the given composite key, or
|
Full Usage:
ProcessParameterValue.insert (driver, row)
Parameters:
ISqliteDriver
row : ProcessParameterValueRow
|
Inserts a new row.
|
Full Usage:
ProcessParameterValue.list driver
Parameters:
ISqliteDriver
Returns: ProcessParameterValueRow array
|
Returns all rows ordered by primary key.
|
Full Usage:
ProcessParameterValue.update (driver, row)
Parameters:
ISqliteDriver
row : ProcessParameterValueRow
|
Updates the row identified by
|
ProcessCore