duckdb-node
duckdb-node copied to clipboard
There was a compilation problem specific to Node 22 + Windows, that appears to have gone away in the mean time, probably node side.
Hi, and thanks for your great project. I'm having issues installing duckdb for my M1 device with Node.js v21.5.0. Providing the logs below: ``` npm ERR! code 1 npm ERR!...
### What happens? Querying with a bigint value from the nodejs binding fails to match a bigint value in the database. ### To Reproduce Reproducer code: ```typescript import {Callback, Database,...
Hi, First of all, thanks for the efforts in maintaining `duckdb-node`! We've noticed the `yarn install/add` process is quite time-consuming. I'm running on WSL, AMD Ryzen 5 5600H, laptop and...
Hey all, wanting to use duckdb for out parquet parsing needs. In our lambda functions. I ran `npm install duckdb` and it installed without issue. I am also able to...
Arrow [recently added support](https://github.com/apache/arrow/pull/35780) in their JS library for the LargeUtf8 data type. It would be great if we could bump our Arrow version v15.0.0 to use this feature. I...
**What happens?** I have a service that operates reading parquet files from disk and web (over HTTP). I believe that there is a memory leak causing node.js to run out...
Hi all, This is an issue following this DuckDB [discussion](https://github.com/duckdb/duckdb/discussions/10397#discussioncomment-8393044), and it might also be related to Issue: https://github.com/duckdb/duckdb-node/issues/39 What happens is, after successfully closing a connection the first time,...
### What happens? This NodeJS code that instantiates the DuckDB object SEGVs: ``` const duckdb = require("duckdb"); const db = new duckdb.Database(":memory:", { "access_mode": "READ_WRITE", "threads": "1" }, (err) =>...
Hello there! So, I'm wondering if there are any plans to expose `duckdb_prepared_statement_type` which is exposed in C API? https://duckdb.org/docs/api/c/prepared#duckdb_prepared_statement_type It's similar to what's done in `better-sqlite3` with the [reader](https://github.com/WiseLibs/better-sqlite3/blob/60763a0742690c8bae1db43d838f418cfc83b656/docs/api.md#properties-1)...