Function libduckdb_sys::duckdb_appender_create[][src]

pub unsafe extern "C" fn duckdb_appender_create(
    connection: duckdb_connection,
    schema: *const c_char,
    table: *const c_char,
    out_appender: *mut duckdb_appender
) -> duckdb_state
Expand description

Creates an appender object.

connection: The connection context to create the appender in. schema: The schema of the table to append to, or nullptr for the default schema. table: The table name to append to. out_appender: The resulting appender object. returns: DuckDBSuccess on success or DuckDBError on failure.