OpenM++ runtime library (libopenm)
|
parameter_dic join to model_parameter_dic table row. More...
Public Member Functions | |
ParamDicRow (int i_modelId, int i_paramId) | |
create row with supplied unique key field values. | |
ParamDicRow (void) | |
create row with default empty field values. | |
Static Public Member Functions | |
static bool | isKeyLess (const ParamDicRow &i_left, const ParamDicRow &i_right) |
less comparator by unique key: model id, model parameter id. | |
static bool | isKeyEqual (const ParamDicRow &i_left, const ParamDicRow &i_right) |
equal comparator by unique key: model id, model parameter id. | |
static vector< ParamDicRow >::const_iterator | byKey (int i_modelId, int i_paramId, const vector< ParamDicRow > &i_rowVec) |
find row by unique key: model id, model parameter id. | |
![]() | |
static bool | keyLess (const IRowBaseUptr &i_left, const IRowBaseUptr &i_right) |
less comparator by row primary key. | |
static bool | keyEqual (const IRowBaseUptr &i_left, const IRowBaseUptr &i_right) |
equal comparator by row primary key. | |
Public Attributes | |
int | modelId |
model_id INT NOT NULL | |
int | paramId |
model_parameter_id INT NOT NULL | |
string | paramName |
parameter_name VARCHAR(255) NOT NULL | |
int | paramHid |
parameter_hid INT NOT NULL, – unique parameter id | |
string | digest |
parameter_digest VARCHAR(32) NOT NULL | |
int | rank |
parameter_rank INT NOT NULL | |
int | typeId |
model_type_id INT NOT NULL | |
bool | isExtendable |
is_extendable SMALLINT NOT NULL | |
bool | isHidden |
is_hidden SMALLINT NOT NULL | |
int | numCumulated |
num_cumulated INT NOT NULL | |
string | dbRunTable |
db_run_table VARCHAR(64) NOT NULL | |
string | dbSetTable |
db_set_table VARCHAR(64) NOT NULL | |
string | importDigest |
import_digest VARCHAR(32) NOT NULL | |
parameter_dic join to model_parameter_dic table row.