Open an existing blob.
| 3115 | |
| 3116 | // Open an existing blob. |
| 3117 | ISC_STATUS API_ROUTINE isc_open_blob(ISC_STATUS* userStatus, isc_db_handle* dbHandle, |
| 3118 | isc_tr_handle* traHandle, isc_blob_handle* blobHandle, ISC_QUAD* blobId) |
| 3119 | { |
| 3120 | return openOrCreateBlob(userStatus, dbHandle, traHandle, blobHandle, blobId, 0, 0, false); |
| 3121 | } |
| 3122 | |
| 3123 | |
| 3124 | // Open an existing blob (extended edition). |
nothing calls this directly
no test coverage detected