OpenM++ runtime library (libopenm)
|
run_option table row. More...
#include <dbMetaRow.h>
Public Member Functions | |
RunOptionRow (int i_runId, const string &i_key) | |
create row with supplied primary key field values. | |
RunOptionRow (void) | |
create row with default empty field values. | |
Static Public Member Functions | |
static bool | isKeyLess (const RunOptionRow &i_left, const RunOptionRow &i_right) |
less comparator by primary key: run id, option key. | |
static bool | isKeyEqual (const RunOptionRow &i_left, const RunOptionRow &i_right) |
equal comparator by primary key: run id, option key. | |
Static Public Member Functions inherited from openm::IMetaRow< RunOptionRow > | |
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 | |
string | key |
option_key VARCHAR(255) NOT NULL | |
string | value |
option_value VARCHAR(2048) NOT NULL | |
run_option table row.