MCPcopy Index your code
hub / github.com/Masterminds/squirrel / Scan

Method Scan

select.go:209–211  ·  view source on GitHub ↗

Scan is a shortcut for QueryRow().Scan.

(dest ...interface{})

Source from the content-addressed store, hash-verified

207
208// Scan is a shortcut for QueryRow().Scan.
209func (b SelectBuilder) Scan(dest ...interface{}) error {
210 return b.QueryRow().Scan(dest...)
211}
212
213// SQL methods
214

Callers

nothing calls this directly

Calls 2

QueryRowMethod · 0.95
ScanMethod · 0.65

Tested by

no test coverage detected