| 179 | } |
| 180 | |
| 181 | inline bool isStr(const ISC_STATUS v) throw() |
| 182 | { |
| 183 | switch (v) |
| 184 | { |
| 185 | case isc_arg_cstring: |
| 186 | case isc_arg_string: |
| 187 | case isc_arg_interpreted: |
| 188 | case isc_arg_sql_state: |
| 189 | return true; |
| 190 | } |
| 191 | |
| 192 | return false; |
| 193 | } |
| 194 | |
| 195 | // Check does vector contain particular code or not |
| 196 | bool containsErrorCode(const ISC_STATUS* v, ISC_STATUS code); |
no outgoing calls
no test coverage detected