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
.
info: The info object
index: The index of the parameter to get
returns: The value of the parameter. Must be destroyed with duckdb_destroy_value
.