IOdbcRepositoryQueryExtensions extension
Columnar and streaming helpers missing from the raw repository contract.
Mirrors OdbcQueryService behaviour so repository consumers do not need
the service façade for column-major reads.
Methods
-
executeQueryColumnarFromObjects(
String connectionId, String sql, {List< Object?> ? params}) → Future<Result< TypedColumnarResult> > -
Available on IOdbcRepository, provided by the IOdbcRepositoryQueryExtensions extension
Converts untyped positional values to ParamValue tags before execute. -
streamQueryColumnarNative(
String connectionId, String sql) → Stream< Result< TypedColumnarResult> > -
Available on IOdbcRepository, provided by the IOdbcRepositoryQueryExtensions extension
Explicit alias for streamQueryColumnar when callers want to stress the native columnar wire path (odbc_stream_start_batched_options).