quackdb_internal::ffi

Function duckdb_appender_create

Source
pub unsafe extern "C" fn duckdb_appender_create(
    connection: *mut _duckdb_connection,
    schema: *const i8,
    table: *const i8,
    out_appender: *mut *mut _duckdb_appender,
) -> u32
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.