Function libduckdb_sys::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.

info: The info object name: The name of the parameter returns: The value of the parameter. Must be destroyed with duckdb_destroy_value.