(sql, parameters)
| 125 | } |
| 126 | |
| 127 | run(sql, parameters) { |
| 128 | const errForStack = new Error(); |
| 129 | return this.connection.queue.enqueue(() => |
| 130 | this._run(this.connection, sql, parameters, errForStack.stack) |
| 131 | ); |
| 132 | } |
| 133 | |
| 134 | static formatBindParameters(sql, values, dialect) { |
| 135 | const bindParam = {}; |