pub unsafe extern "C" fn duckdb_bind_get_parameter(
info: duckdb_bind_info,
index: idx_t,
) -> duckdb_value
Expand description
Retrieves the parameter at the given index.
The result must be destroyed with duckdb_destroy_value
.
@param info The info object
@param index The index of the parameter to get
@return The value of the parameter. Must be destroyed with duckdb_destroy_value
.