| 1549 | |
| 1550 | |
| 1551 | Firebird::IAttachment* handleToIAttachment(CheckStatusWrapper* status, isc_db_handle* handle) |
| 1552 | { |
| 1553 | try |
| 1554 | { |
| 1555 | RefPtr<YAttachment> attachment(translateHandle(attachments, handle)); |
| 1556 | attachment->addRef(); |
| 1557 | return attachment; |
| 1558 | } |
| 1559 | catch (const Exception& e) |
| 1560 | { |
| 1561 | e.stuffException(status); |
| 1562 | } |
| 1563 | |
| 1564 | return NULL; |
| 1565 | } |
| 1566 | |
| 1567 | |
| 1568 | Firebird::ITransaction* handleToITransaction(CheckStatusWrapper* status, isc_tr_handle* handle) |
no test coverage detected