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
The ConnectConfig interface seems to be missing parameters supportBigNumbers and bigNumberStrings. According to the documentation they should be.
supportBigNumbers
bigNumberStrings
The following works, but is not covered by the TypeScript definition:
import { createConnection } from 'mariadb' createConnection({ host: '', database: '', user: '', password: '', supportBigNumbers: true, }) .then(() => {}) .catch(() => {});
The text was updated successfully, but these errors were encountered:
right, even if deprecated, they are missing in Typescript definition.
Sorry, something went wrong.
[CONJS-252] missing deprecated option supportBigNumbers and bigNumber…
5032d97
…Strings in Typescript #240
Correction will be in 3.2.0 version
No branches or pull requests
The ConnectConfig interface seems to be missing parameters
supportBigNumbersandbigNumberStrings. According to the documentation they should be.The following works, but is not covered by the TypeScript definition:
The text was updated successfully, but these errors were encountered: