Open an existing blob (extended edition).
| 3123 | |
| 3124 | // Open an existing blob (extended edition). |
| 3125 | ISC_STATUS API_ROUTINE isc_open_blob2(ISC_STATUS* userStatus, isc_db_handle* dbHandle, |
| 3126 | isc_tr_handle* traHandle, isc_blob_handle* blobHandle, ISC_QUAD* blobId, |
| 3127 | ISC_USHORT bpbLength, const UCHAR* bpb) |
| 3128 | { |
| 3129 | return openOrCreateBlob(userStatus, dbHandle, traHandle, blobHandle, blobId, |
| 3130 | bpbLength, bpb, false); |
| 3131 | } |
| 3132 | |
| 3133 | |
| 3134 | // Prepare a transaction for commit. First phase of a two phase commit. |
nothing calls this directly
no test coverage detected