Function duckdb_bind_get_named_parameter

Source
pub unsafe extern "C" fn duckdb_bind_get_named_parameter(
    info: duckdb_bind_info,
    name: *const c_char,
) -> duckdb_value
Expand description

Retrieves a named parameter with the given name.

The result must be destroyed with duckdb_destroy_value.

@param info The info object @param name The name of the parameter @return The value of the parameter. Must be destroyed with duckdb_destroy_value.