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

Interface ColScanner

sqlx.go:70–74  ·  sqlx.go::ColScanner

ColScanner is an interface used by MapScan and SliceScan

Source from the content-addressed store, hash-verified

68
69// ColScanner is an interface used by MapScan and SliceScan
70type ColScanner interface {
71 Columns() ([]string, error)
72 Scan(dest ...interface{}) error
73 Err() error
74}
75
76// Queryer is an interface used by Get and Select
77type Queryer interface {

Callers

nothing calls this directly

Implementers 1

Rowsqlx.go

Calls

no outgoing calls

Tested by

no test coverage detected