Function duckdb_init_set_init_data

Source
pub unsafe extern "C" fn duckdb_init_set_init_data(
    info: duckdb_init_info,
    init_data: *mut c_void,
    destroy: duckdb_delete_callback_t,
)
Expand description

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

@param info The info object @param init_data The init data object. @param destroy The callback that will be called to destroy the init data (if any)