MCPcopy Index your code
hub / github.com/foxcpp/maddy / SQL

Struct SQL

internal/table/sql_query.go:37–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35)
36
37type SQL struct {
38 modName string
39 instName string
40 prepare func() error
41
42 namedArgs bool
43
44 db *sql.DB
45 lookup *sql.Stmt
46 add *sql.Stmt
47 list *sql.Stmt
48 set *sql.Stmt
49 del *sql.Stmt
50}
51
52func NewSQL(_ *container.C, modName, instName string) (module.Module, error) {
53 return &SQL{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected