node-mysql2
node-mysql2 copied to clipboard
:zap: fast mysqljs/mysql compatible mysql driver for node.js
### Description I have noticed some behavior that I did not expect in the **LIMIT clause.** When I run the query with data.LIMIT = 3 **(number type)** not works it....
Sometimes we will have queries which take a while to complete. The issue isn't repeatable. Is it possible to determine how long functions such as query take to acquire a...
Hi @sidorares ! I was curious if there's an interest in a total typescript conversion of this project. I started this as an exercise/experiment and noticed the code is hella...
It happens every first time my app interactive with database after a few minutes idle. I downgrade `mysql2` to version `v3.3.1`, it seems work well. So I want to know...
Hello. Until today, everything worked fine, until the MySQL was updated from version 5 to version 8. And I get this error after any write (INSERT or UPDATE). Who has...
On page [node-mysql2/docs](https://sidorares.github.io/node-mysql2/docs) there isn't a single example of how to close the connection after you have used it! Pooled connections get a brief mention. On [connections/create-connection](https://sidorares.github.io/node-mysql2/docs/examples/connections/create-connection) no mention of...
Close connections were missing so I have added it in quickstart. Fix: #2543
It seems that DELIMITER commands aren't forwarded to the MySQL server properly. ``` DELIMITER $$ DELIMITER ; ``` This is perfectly correct, and runs fine from DBeaver or even the...
Hey @sidorares, what about a canary version? 🙋🏻♂️ We could publishing to **npm** a canary tag for every merge in `master` branch that isn't a release. Then we could keep...
Hi! If I call `setMaxParserCache` imported from mysql2, I get an error: ``` /node_modules/mysql2/lib/parsers/parser_cache.js:54 parserCache.max = max; ^ TypeError: Cannot set property max of # which has only a getter...