node-mysql2 icon indicating copy to clipboard operation
node-mysql2 copied to clipboard

:zap: fast mysqljs/mysql compatible mysql driver for node.js

Results 356 node-mysql2 issues
Sort by recently updated
recently updated
newest added

When running tests w/ a MySQL instance running in docker, the tests will likely fail due to timezone differences. I updated the documentation to make mention that you will need...

needs rebase

inspect function is no longer supported as mention in https://nodejs.org/api/deprecations.html#deprecations_dep0079_custom_inspection_function_on_objects_via_inspect and according to https://nodejs.org/api/util.html#util_util_inspect_custom it is defined as a shared symbol.

needs rebase

`options.values` is checked to be an array in line 579, `if (!Array.isArray(options.values)) {` I don't think its needed also to perform the same check again, for each entry in the...

needs rebase

The POOL_CLOSED err.code is in the original MySQL node module and exists every time the 'Pool is closed.' error message appears. The CONNECTION_CLOSED does NOT exist in the original MySQL...

needs rebase

New pull request for the functionality in this pull request: https://github.com/sidorares/node-mysql2/pull/811 I had to create a new PR and close the old one, as github will not allow me to...

needs rebase

This adds a new configuration for desired minimum connections, to complement the connection limit. If the autoOpenConnections is enabled (default true), the pool will immediately open the desired minimum number...

needs rebase

I am adding TableMap, UpdateRows, WriteRows and DeleteRows events. - [x] TableMapEvent - [ ] RowEvent - [ ] UpdateRowEvent - [ ] WriteRowEvent - [ ] DeleteRowEvent

needs rebase