Using DuckDB C API to append Array type
I have an existing DuckDB database with a table that has the schema:
name: VARCHAR location: VARCHAR lucky_numbers: UINTEGER[5]
and I want to add a row using DuckDB’s C API.
I have an existing DuckDB database with a table that has the schema:
name: VARCHAR location: VARCHAR lucky_numbers: UINTEGER[5]
and I want to add a row using DuckDB’s C API.