|
| Raw_record_set (TABLE *table, Raw_key *key) |
|
bool | open () |
| Initializes the table scan operation. More...
|
|
| Raw_record (TABLE *table) |
|
bool | update () |
| Update table record into SE. More...
|
|
bool | drop () |
| Drop the record from SE. More...
|
|
bool | store_pk_id (int field_no, Object_id id) |
|
bool | store_ref_id (int field_no, Object_id id) |
|
bool | store (int field_no, const String_type &s, bool is_null=false) |
|
bool | store (int field_no, ulonglong ull, bool is_null=false) |
|
bool | store (int field_no, longlong ll, bool is_null=false) |
|
bool | store (int field_no, bool b, bool is_null=false) |
|
bool | store (int field_no, uint v, bool is_null=false) |
|
bool | store (int field_no, int v, bool is_null=false) |
|
bool | store (int field_no, const Properties &p) |
|
bool | store_time (int field_no, my_time_t val, bool is_null=false) |
|
bool | store_timestamp (int field_no, const my_timeval &tv) |
| Store timeval at field specified by field_no into the record. More...
|
|
bool | store_json (int field_no, const Json_wrapper &json) |
|
bool | is_null (int field_no) const |
|
longlong | read_int (int field_no) const |
|
longlong | read_int (int field_no, longlong null_value) const |
|
ulonglong | read_uint (int field_no) const |
|
ulonglong | read_uint (int field_no, ulonglong null_value) const |
|
String_type | read_str (int field_no) const |
|
String_type | read_str (int field_no, const String_type &null_value) const |
|
Object_id | read_ref_id (int field_no) const |
|
bool | read_bool (int field_no) const |
|
my_time_t | read_time (int field_no) const |
|
my_timeval | read_timestamp (int field_no) const |
| Read timeval stored at field specified by field_no from the record. More...
|
|
bool | read_json (int field_no, Json_wrapper *json_wrapper) const |
|
void | set_null (int field_no, bool is_null) |
|
Field * | field (int field_no) const |
|