|
The mi_save_set_insert() function appends a copy of a row at the end of the specified save set.
The mi_save_set_insert() function inserts a row into the save set that save_set references. Because the DataBlade API maintains a save set as an FIFO (first-in, first-out) queue, mi_save_set_insert() appends the new row to the end of the save set. This save set must have been previously created with mi_save_set_create().
| MI_ROW * | is a pointer to the copy of row that is being appended to the save set. The application can use this pointer to access the row. |
| NULL | indicates that the function was not successful. |
See the descriptions of the following functions: mi_next_row() and mi_save_set_delete().