odbc_stream_fetch method

  1. @override
int odbc_stream_fetch(
  1. int streamId,
  2. Pointer<Uint8> outBuf,
  3. int bufLen,
  4. Pointer<Uint32> outWritten,
  5. Pointer<Uint8> hasMore,
)
override

Implementation

@override
int odbc_stream_fetch(
  int streamId,
  ffi.Pointer<ffi.Uint8> outBuf,
  int bufLen,
  ffi.Pointer<ffi.Uint32> outWritten,
  ffi.Pointer<ffi.Uint8> hasMore,
) =>
    _overrides.streamFetch?.call(
      streamId,
      outBuf,
      bufLen,
      outWritten,
      hasMore,
    ) ??
    super.odbc_stream_fetch(
      streamId,
      outBuf,
      bufLen,
      outWritten,
      hasMore,
    );