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
I think the metaAsArray property is missing in the QueryConfig interface.
metaAsArray
QueryConfig
The following works, but is not covered by the TypeScript definition:
const connection = mySqlPool.getConnection(); connection.execute({ sql: "SELECT * FROM test WHERE id = ?", metaAsArray: true, }, [1]).then(async ([results, meta]: any) => { ... });
The text was updated successfully, but these errors were encountered:
this will be corrected in 3.1.0 with ba70356 commit
Sorry, something went wrong.
No branches or pull requests
I think the
metaAsArrayproperty is missing in theQueryConfiginterface.The following works, but is not covered by the TypeScript definition:
The text was updated successfully, but these errors were encountered: