Replies: 1 comment
-
Implemented in #9802 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I want to implement streaming results in DuckDB.NET library, similar to result streaming in JDBC. For this I need a streaming
duckdb_result
Using the C Api the only to get a streaming result is with Pending Result Interface but it has an awkward API, (it requires calling
duckdb_pending_execute_task
in a loop and polling withduckdb_pending_execution_is_finished
)I propose you add a new API that takes a
prepared_statement
and creates a streaming result. It can look like this:Beta Was this translation helpful? Give feedback.
All reactions