anothersmith / node-duckdb

DuckDB NodeJS bindings
MIT License
48 stars 12 forks source link

Support for the C++ Appender API #70

Open willium opened 3 years ago

willium commented 3 years ago

It'd be great to be able to bulk imports from JavaScript in-memory data. DuckDB exposes a C++ Appender API for this purpose, and it's much more performant than INSERT statements.

willium commented 3 years ago

The API is fairly simple (here is the Java wrapper of the C++ class)

rprovodenko commented 3 years ago

Interesting, I'll take a look into this