コード例 #1
0
 public static Result sqlite3_blob_read(
     SafeSqliteBlobHandle blob,
     Span <byte> bytes,
     int offset
     )
 {
     using var _ = blob.Lease();
     return((Result)raw.sqlite3_blob_read(blob.DangerousGetWrapper(), bytes, offset));
 }
コード例 #2
0
 public static int sqlite3_blob_bytes(SafeSqliteBlobHandle blob)
 {
     using var _ = blob.Lease();
     return(raw.sqlite3_blob_bytes(blob.DangerousGetWrapper()));
 }
コード例 #3
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));
 }