예제 #1
0
 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));
 }
예제 #2
0
 public static int sqlite3_blob_bytes(SafeSqliteBlobHandle blob)
 {
     using var _ = blob.Lease();
     return(raw.sqlite3_blob_bytes(blob.DangerousGetHandle()));
 }