Constructor of the data model. NOTE! OINODbDataModel.initialize must be called after constructor to populate fields.
api of the data model
ReadonlydbDatabase refererence of the table
ReadonlyfieldsField refererences of the API
Build a parameterized SQL DELETE statement for id. Execute with OINODb.runStatement.
OINO ID (i.e. combined primary key values)
Build a parameterized SQL INSERT statement from one data row. Execute with OINODb.runStatement.
one row of data in the data model
Build a parameterized SQL SELECT statement using optional id and filter. Values are bound as
parameters; execute with OINODb.runStatement.
OINO ID (i.e. combined primary key values)
OINO request params
Build a parameterized SQL UPDATE statement from one data row. Execute with OINODb.runStatement.
OINO ID (i.e. combined primary key values)
one row of data in the data model
Print SQL select statement using optional id and filter as an inline (non-parameterized) string.
OINO ID (i.e. combined primary key values)
OINO request params
OINO Datamodel object for representing one database table and it's columns.