(sql, parameters)
| 116 | } |
| 117 | |
| 118 | run(sql, parameters) { |
| 119 | const errForStack = new Error(); |
| 120 | return this.connection.queue.enqueue(() => |
| 121 | this._run(this.connection, sql, parameters, errForStack.stack) |
| 122 | ); |
| 123 | } |
| 124 | |
| 125 | static formatBindParameters(sql, values, dialect) { |
| 126 | const bindParam = {}; |