()
| 80 | Client.prototype.prepare = function (statementName, text, nParams, cb) { |
| 81 | const self = this |
| 82 | const fn = function () { |
| 83 | return self.pq.sendPrepare(statementName, text, nParams) |
| 84 | } |
| 85 | |
| 86 | self._dispatchQuery(self.pq, fn, function (err) { |
| 87 | if (err) return cb(err) |