| 720 | } |
| 721 | |
| 722 | void InternalStatement::putExtBlob(thread_db* tdbb, dsc& src, dsc& dst) |
| 723 | { |
| 724 | if (isPermanentBlob(src) || (m_transaction->getScope() == traCommon && m_intConnection.isCurrent())) |
| 725 | MOV_move(tdbb, &src, &dst); |
| 726 | else |
| 727 | Statement::putExtBlob(tdbb, src, dst); |
| 728 | } |
| 729 | |
| 730 | void InternalStatement::getExtBlob(thread_db* tdbb, const dsc& src, dsc& dst) |
| 731 | { |
nothing calls this directly
no test coverage detected