We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Everything binds correctly with Bun except the each() method. Calling the each() method causes the following error:
dyld[75263]: missing symbol called zsh: abort bun run index.ts
bun init
bun install sqlite3
import sqlite3 from 'sqlite3'; const db = new sqlite3.Database('data.db'); db.each('SELECT * FROM sessions', (err, row) => { console.log(row); });
bun run index.ts
5.1.7
Bun 1.1.29
M1 MacBook Pro (MacOS 14.6.1). MacOS Bun binary with curl -fsSL https://bun.sh/install | bash
curl -fsSL https://bun.sh/install | bash
The text was updated successfully, but these errors were encountered:
More details in this issue: SanderGi/sqlite-auto-migrator#1
Sorry, something went wrong.
No branches or pull requests
Issue Summary
Everything binds correctly with Bun except the each() method. Calling the each() method causes the following error:
Steps to Reproduce
bun init
a new empty projectbun install sqlite3
bun run index.ts
Version
5.1.7
Node.js Version
Bun 1.1.29
How did you install the library?
M1 MacBook Pro (MacOS 14.6.1). MacOS Bun binary with
curl -fsSL https://bun.sh/install | bash
The text was updated successfully, but these errors were encountered: