You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently using batch insert statements to insert data to duckdb from java. As specified in the docs:
The preferred method for bulk inserts is to use the Appender due to its higher performance. However, when using the Appender is not possbile, the batch writer is available as alternative.
Unfortunately some of my data are dates / times and nested arrays.
Could duckdb_append_date/duckdb_append_time be exposed in java?
and a method of adding arrays?
It would be nice to be able to say appender.append(new int[]{3,2,1}); or similar for each data type.
I'm currently using batch insert statements to insert data to duckdb from java. As specified in the docs:
Unfortunately some of my data are dates / times and nested arrays.
Could duckdb_append_date/duckdb_append_time be exposed in java?
and a method of adding arrays?
It would be nice to be able to say
appender.append(new int[]{3,2,1});
or similar for each data type.DuckDB C API
The text was updated successfully, but these errors were encountered: