Create a new blob.
| 1956 | |
| 1957 | // Create a new blob. |
| 1958 | ISC_STATUS API_ROUTINE isc_create_blob2(ISC_STATUS* userStatus, isc_db_handle* dbHandle, |
| 1959 | isc_tr_handle* traHandle, isc_blob_handle* blobHandle, ISC_QUAD* blobId, |
| 1960 | SSHORT bpbLength, const SCHAR* bpb) |
| 1961 | { |
| 1962 | return openOrCreateBlob(userStatus, dbHandle, traHandle, blobHandle, blobId, |
| 1963 | bpbLength, reinterpret_cast<const UCHAR*>(bpb), true); |
| 1964 | } |
| 1965 | |
| 1966 | |
| 1967 | // Create a nice, squeaky clean database, uncorrupted by user data. |
nothing calls this directly
no test coverage detected