bind_blob64 method

int bind_blob64(
  1. PtrStmt arg1,
  2. int arg2,
  3. Uint8List? arg3
)
inherited

Implementation

int bind_blob64(PtrStmt arg1, int arg2, typed.Uint8List? arg3) {
  if (libVersionNumber < 3008007) {
    throw dbsql.DatabaseException('API sqlite3_bind_blob64 is not available before 3.8.7');
  }
  final arg3Meta = arg3?._metaNativeUint8();
  final ptrArg3 = arg3Meta?.ptr ?? ffi.nullptr;
  return _h_sqlite3_bind_blob64!(arg1, arg2, ptrArg3, arg3Meta?.length ?? 0, _ptrDestructor);
}