Function libduckdb_sys::duckdb_parameter_name

source ·
pub unsafe extern "C" fn duckdb_parameter_name(
    prepared_statement: duckdb_prepared_statement,
    index: idx_t
) -> *const c_char
Expand description

Returns the name used to identify the parameter The returned string should be freed using duckdb_free.

Returns NULL if the index is out of range for the provided prepared statement.

prepared_statement: The prepared statement for which to get the parameter name from.