| 213 | } |
| 214 | |
| 215 | bool InternalConnection::cancelExecution(bool /*forced*/) |
| 216 | { |
| 217 | if (!m_attachment->getHandle()) |
| 218 | return false; |
| 219 | |
| 220 | if (isCurrent()) |
| 221 | return true; |
| 222 | |
| 223 | FbLocalStatus status; |
| 224 | |
| 225 | m_attachment->cancelOperation(&status, fb_cancel_raise); |
| 226 | return !(status->getState() & IStatus::STATE_ERRORS); |
| 227 | } |
| 228 | |
| 229 | bool InternalConnection::resetSession(thread_db* tdbb) |
| 230 | { |
nothing calls this directly
no test coverage detected