OpenM++ runtime library (libopenm)
|
run_lst table row. More...
Public Member Functions | |
RunLstRow (int i_runId) | |
create row with supplied primary key field values. | |
RunLstRow (void) | |
create row with default empty field values. | |
Static Public Member Functions | |
static bool | isKeyLess (const RunLstRow &i_left, const RunLstRow &i_right) |
less comparator by primary key: run id. | |
static bool | isKeyEqual (const RunLstRow &i_left, const RunLstRow &i_right) |
equal comparator by primary key: run id. | |
static vector< RunLstRow >::const_iterator | byKey (int i_runId, const vector< RunLstRow > &i_rowVec) |
find row by primary key: run 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 | runId |
run_id INT NOT NULL | |
int | modelId |
model_id INT NOT NULL | |
string | name |
run_name VARCHAR(255) NOT NULL | |
int | subCount |
sub_count INT NOT NULL | |
int | subStarted |
sub_started INT NOT NULL | |
int | subCompleted |
sub_completed INT NOT NULL | |
int | subRestart |
sub_restart INT NOT NULL | |
string | createDateTime |
create_dt VARCHAR(32) NOT NULL | |
string | status |
run status: i=init p=progress s=success e=error(failed) | |
string | updateDateTime |
update_dt VARCHAR(32) NOT NULL | |
string | runStamp |
run_stamp VARCHAR(32) NOT NULL | |
run_lst table row.