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
For example,
const myTable = sql.table("myTable"); pool.acquire(async (connection) => { //Place all database calls inside here const row = await sql.from(myTable) .select(columns => [columns]) .fetchAll(connection); console.log(row); });
Playground
Expected: Compile error
Actual: Compiles, run-time error
This isn't a super-critical bug, in my opinion. But it would be nice to fix this.
Most people should not run into this problem.
The text was updated successfully, but these errors were encountered:
AnyhowStep
No branches or pull requests
For example,
Playground
Expected: Compile error
Actual: Compiles, run-time error
This isn't a super-critical bug, in my opinion. But it would be nice to fix this.
Most people should not run into this problem.
The text was updated successfully, but these errors were encountered: