Example #1
0
 static public int sqlite3_blob_write(sqlite3_blob blob, byte[] b, int n, int offset)
 {
     // TODO why would anyone want to write a different number of bytes than the size of the array given?
     return(_imp.sqlite3_blob_write(blob.ptr, b, n, offset));
 }