MCPcopy
hub / github.com/Masterminds/squirrel / Scan

Method Scan

row.go:17–22  ·  view source on GitHub ↗

Scan returns Row.err or calls RowScanner.Scan.

(dest ...interface{})

Source from the content-addressed store, hash-verified

15
16// Scan returns Row.err or calls RowScanner.Scan.
17func (r *Row) Scan(dest ...interface{}) error {
18 if r.err != nil {
19 return r.err
20 }
21 return r.RowScanner.Scan(dest...)
22}

Callers 2

TestRowScanFunction · 0.95
TestRowScanErrFunction · 0.95

Calls 1

ScanMethod · 0.65

Tested by 2

TestRowScanFunction · 0.76
TestRowScanErrFunction · 0.76