| 154 | } |
| 155 | |
| 156 | static inline void success(const int column, bool ok, const char* status_name, const char* post = "") |
| 157 | { |
| 158 | printa(column, "if (%s%s->getState() & Firebird::IStatus::STATE_ERRORS%s)%s", |
| 159 | ok ? "!(" : "", global_status_name, ok ? ")" : "", post); |
| 160 | } |
| 161 | |
| 162 | static inline void set_sqlcode(const act* action, const int column) |
| 163 | { |
no test coverage detected