Last 12 weeks · 0 commits
2 of 6 standards met
Description When using , SQL queries built with fail with a syntax error. The method returns the correct SQL, but the query sent to the database only contains the initial SQL fragment. Reproduction Root Cause In , is set once in the constructor and never updated after calls: Proposed Fix The fix is minimal - just update and in before sending the query: Happy to open a PR if this approach looks good. Environment waddler version: 0.1.1 Driver: waddler/neon-serverless Database: Neon PostgreSQL (pooler connection)
Repository: drizzle-team/waddler. Description: Modern SQL client Stars: 318, Forks: 10. Primary language: TypeScript. Languages: TypeScript (99.5%), JavaScript (0.5%). License: Apache-2.0. Homepage: https://waddler.drizzle.team Topics: duckdb, javascript, motherduck, nodejs, sql, typescript. Latest release: 0.1.1 (6mo ago). Open PRs: 2, open issues: 7. Last activity: 2mo ago. Community health: 50%. Top contributors: OleksiiKH0240, AndriiSherman, AlexBlokh, Sukairo-02.
TypeScript
Thanks for making this project. Nice for working with duckdb. I'm trying to use PRAGMA with the FTS extension. When trying to create a FTS index: Results in: Seems like either need: A way to get the underlying connection from the pool so you can use the full API Or a way to run sql without going thru a prepared statement. I think in postgres.js this would be the api