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