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