pub unsafe extern "C" fn duckdb_bind_get_parameter(
    info: *mut c_void,
    index: u64
) -> *mut _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.