public static Result sqlite3_blob_read(SafeSqliteBlobHandle blob, byte[] b, int n, int offset) { using var _ = blob.Lease(); return((Result)raw.sqlite3_blob_read(blob.DangerousGetHandle(), b, n, offset)); }
public static int sqlite3_blob_bytes(SafeSqliteBlobHandle blob) { using var _ = blob.Lease(); return(raw.sqlite3_blob_bytes(blob.DangerousGetHandle())); }