| 4145 | // Note that not all COBOLs have the concept of a function. |
| 4146 | |
| 4147 | static void set_sqlcode( const act* action) |
| 4148 | { |
| 4149 | TEXT buffer[128]; |
| 4150 | |
| 4151 | if (action && action->act_flags & ACT_sql) |
| 4152 | { |
| 4153 | strcpy(buffer, SQLCODE_CALL_TEMPLATE); |
| 4154 | printa(names[COLUMN], true, buffer, ISC_SQLCODE_CALL, names[isc_status_vector_pos]); |
| 4155 | } |
| 4156 | } |
| 4157 | |
| 4158 | |
| 4159 | //____________________________________________________________ |
no test coverage detected