MCPcopy
hub / github.com/jmoiron/sqlx / Queryer

Interface Queryer

sqlx.go:77–81  ·  sqlx.go::Queryer

Queryer is an interface used by Get and Select

Source from the content-addressed store, hash-verified

75
76// Queryer is an interface used by Get and Select
77type Queryer interface {
78 Query(query string, args ...interface{}) (*sql.Rows, error)
79 Queryx(query string, args ...interface{}) (*Rows, error)
80 QueryRowx(query string, args ...interface{}) *Row
81}
82
83// Execer is an interface used by MustExec and LoadFile
84type Execer interface {

Callers 21

QueryxMethod · 0.65
QueryRowxMethod · 0.65
QueryxMethod · 0.65
QueryRowxMethod · 0.65
QueryMethod · 0.65
QueryxMethod · 0.65
QueryRowxMethod · 0.65
QueryMethod · 0.65
SelectFunction · 0.65
NamedQueryFunction · 0.65
TestMissingNamesFunction · 0.65
TestEmbeddedStructsFunction · 0.65

Implementers 2

qStmtsqlx.go
NamedStmtnamed.go

Calls

no outgoing calls

Tested by

no test coverage detected