| 1496 | // |
| 1497 | |
| 1498 | static void gen_cursor_init( const act* action) |
| 1499 | { |
| 1500 | |
| 1501 | // If blobs are present, zero out all of the blob handles. After this |
| 1502 | // point, the handles are the user's responsibility |
| 1503 | |
| 1504 | if (action->act_request->req_flags & (REQ_sql_blob_open | REQ_sql_blob_create)) |
| 1505 | { |
| 1506 | printa(names[COLUMN], false, "MOVE 0 TO %s%d", names[isc_a_pos], |
| 1507 | action->act_request->req_blobs->blb_ident); |
| 1508 | } |
| 1509 | } |
| 1510 | |
| 1511 | |
| 1512 | //____________________________________________________________ |