| 1356 | // |
| 1357 | |
| 1358 | static void gen_cursor_init( const act* action, int column) |
| 1359 | { |
| 1360 | |
| 1361 | // If blobs are present, zero out all of the blob handles. After this |
| 1362 | // point, the handles are the user's responsibility |
| 1363 | |
| 1364 | if (action->act_request->req_flags & (REQ_sql_blob_open | REQ_sql_blob_create)) |
| 1365 | { |
| 1366 | printa(column, "fb_%d = 0;", action->act_request->req_blobs->blb_ident); |
| 1367 | } |
| 1368 | } |
| 1369 | |
| 1370 | |
| 1371 | //____________________________________________________________ |
no test coverage detected