Function libduckdb_sys::duckdb_execute_prepared_arrow

source ·
pub unsafe extern "C" fn duckdb_execute_prepared_arrow(
    prepared_statement: duckdb_prepared_statement,
    out_result: *mut duckdb_arrow
) -> duckdb_state
Expand description

Executes the prepared statement with the given bound parameters, and returns an arrow query result. Note that after running duckdb_execute_prepared_arrow, duckdb_destroy_arrow must be called on the result object.

prepared_statement: The prepared statement to execute. out_result: The query result. returns: DuckDBSuccess on success or DuckDBError on failure.