Function libduckdb_sys::duckdb_bind_set_bind_data

source ·
pub unsafe extern "C" fn duckdb_bind_set_bind_data(
    info: duckdb_bind_info,
    bind_data: *mut c_void,
    destroy: duckdb_delete_callback_t
)
Expand description

Sets the user-provided bind data in the bind object. This object can be retrieved again during execution.

info: The info object extra_data: The bind data object. destroy: The callback that will be called to destroy the bind data (if any)