| 783 | // |
| 784 | |
| 785 | static void gen_blob_for( const act* action, USHORT column) |
| 786 | { |
| 787 | |
| 788 | gen_blob_open(action, column); |
| 789 | if (action->act_error) |
| 790 | printa(column, "if (isc_status(1) = 0) then"); |
| 791 | printa(column, "loop"); |
| 792 | gen_get_segment(action, column + INDENT); |
| 793 | printa(column + INDENT, |
| 794 | "exit when (isc_status(1) /= 0 and isc_status(1) /= firebird.isc_segment);"); |
| 795 | } |
| 796 | |
| 797 | |
| 798 | #ifdef NOT_USED_OR_REPLACED |
no test coverage detected