pub unsafe extern "C" fn duckdb_execute_prepared_arrow(
prepared_statement: duckdb_prepared_statement,
out_result: *mut duckdb_arrow,
) -> duckdb_state
Expand description
DEPRECATION NOTICE**: This method is scheduled for removal in a future release.
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.
@param prepared_statement The prepared statement to execute.
@param out_result The query result.
@return DuckDBSuccess
on success or DuckDBError
on failure.