Open an existing blob.
| 1948 | |
| 1949 | // Open an existing blob. |
| 1950 | ISC_STATUS API_ROUTINE isc_create_blob(ISC_STATUS* userStatus, isc_db_handle* dbHandle, |
| 1951 | isc_tr_handle* traHandle, isc_blob_handle* blobHandle, ISC_QUAD* blobId) |
| 1952 | { |
| 1953 | return openOrCreateBlob(userStatus, dbHandle, traHandle, blobHandle, blobId, 0, NULL, true); |
| 1954 | } |
| 1955 | |
| 1956 | |
| 1957 | // Create a new blob. |
nothing calls this directly
no test coverage detected