MCPcopy Index your code
hub / github.com/CovenantSQL/CovenantSQL / stmt

Struct stmt

client/stmt.go:25–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23)
24
25type stmt struct {
26 c *conn
27 closed int32
28 pattern string
29}
30
31func newStmt(c *conn, query string) (s *stmt) {
32 s = &stmt{c: c, pattern: query}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected