mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
fea47843d7
* Use mysql2 lib * fix pool on acquire event cause MaxListenersExceededWarning (#854) before: every query need to register pool on acquire event to specify queryFormat based on payload type will cause MaxListenersExceededWarning after: from https://www.npmjs.com/package/mysql#pooling-connections pool.query is a shortcut for pool.getConnection() -> connection.query() -> connection.release() so use pool.getConnection and then set queryFormat before query method be called Co-authored-by: Dave Conway-Jones <dceejay@users.noreply.github.com> * fix mysql require * Add decimalNumbers flag true to mysql beta * mysql remove old Timeout option, clarify timezone options * add mysqlConnectionLimit settings option. Co-authored-by: saknarak <saknarak@gmail.com>
29 lines
680 B
JSON
29 lines
680 B
JSON
{
|
|
"name": "node-red-node-mysql",
|
|
"version": "1.0.0-beta-5",
|
|
"description": "A Node-RED node to read and write to a MySQL database",
|
|
"dependencies": {
|
|
"mysql2": "^2.3.3"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/node-red/node-red-nodes.git",
|
|
"directory": "tree/master/storage/mysql"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"keywords": [
|
|
"node-red",
|
|
"mysql"
|
|
],
|
|
"node-red": {
|
|
"nodes": {
|
|
"mysql": "68-mysql.js"
|
|
}
|
|
},
|
|
"author": {
|
|
"name": "Dave Conway-Jones",
|
|
"email": "ceejay@vnet.ibm.com",
|
|
"url": "http://nodered.org"
|
|
}
|
|
}
|