| 1616 | // |
| 1617 | |
| 1618 | static void gen_cursor_init( const act* action) |
| 1619 | { |
| 1620 | |
| 1621 | // If blobs are present, zero out all of the blob handles. After this |
| 1622 | // point, the handles are the user's responsibility |
| 1623 | |
| 1624 | if (action->act_request->req_flags & (REQ_sql_blob_open | REQ_sql_blob_create)) |
| 1625 | { |
| 1626 | printa(names[COLUMN], false, "MOVE 0 TO %s%d", |
| 1627 | names[isc_a_pos], action->act_request->req_blobs->blb_ident); |
| 1628 | } |
| 1629 | } |
| 1630 | |
| 1631 | |
| 1632 | //____________________________________________________________ |