Expand description
Streaming prepared-statement execution.
PreparedQueryStream is the analog of
QueryStream for prepared statements: it
drives the Bind/Execute/Sync response and yields rows in chunks so
callers can process arbitrarily large result sets with constant memory.
Unlike QueryStream, the schema is known at construction time ā it was
captured when the statement was prepared via Describe(āSā), before any
rows are fetched. This makes schema() available before the first
next_chunk call.
Structs§
- Prepared
Query Stream - Streaming iterator for prepared-statement results without materializing all rows.