odbc_stream_fetch method
int
odbc_stream_fetch(
- int streamId,
- Pointer<
Uint8> outBuf, - int bufLen,
- Pointer<
Uint32> outWritten, - 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,
);