We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2fe7db commit 9d46fbbCopy full SHA for 9d46fbb
lib/commands/execute.js
@@ -50,6 +50,12 @@ Execute.prototype.start = function(packet, connection) {
50
this.parameters,
51
connection.config.charsetNumber
52
);
53
+ //For reasons why this try-catch is here, please see
54
+ // https://github.com/sidorares/node-mysql2/pull/689
55
+ //For additional discussion, see
56
+ // 1. https://github.com/sidorares/node-mysql2/issues/493
57
+ // 2. https://github.com/sidorares/node-mysql2/issues/187
58
+ // 3. https://github.com/sidorares/node-mysql2/issues/480
59
try {
60
connection.writePacket(executePacket.toPacket(1));
61
} catch (error) {
0 commit comments