(q)
| 208 | } |
| 209 | |
| 210 | function prepared(q) { |
| 211 | return Buffer.concat([ |
| 212 | Bind(q.parameters, q.statement.types, q.statement.name, q.cursorName), |
| 213 | q.cursorFn |
| 214 | ? Execute('', q.cursorRows) |
| 215 | : ExecuteUnnamed |
| 216 | ]) |
| 217 | } |
| 218 | |
| 219 | function unnamed(q) { |
| 220 | return Buffer.concat([ |
no test coverage detected