MCPcopy Create free account
hub / github.com/porsager/postgres / prepared

Function prepared

deno/src/connection.js:210–217  ·  view source on GitHub ↗
(q)

Source from the content-addressed store, hash-verified

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([

Callers 3

toBufferFunction · 0.70
unnamedFunction · 0.70
ParameterDescriptionFunction · 0.70

Calls 2

BindFunction · 0.70
ExecuteFunction · 0.70

Tested by

no test coverage detected