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

Method MapScan

sqlx.go:593–595  ·  view source on GitHub ↗

MapScan using this Rows.

(dest map[string]interface{})

Source from the content-addressed store, hash-verified

591
592// MapScan using this Rows.
593func (r *Rows) MapScan(dest map[string]interface{}) error {
594 return MapScan(r, dest)
595}
596
597// StructScan is like sql.Rows.Scan, but scans a single Row into a single Struct.
598// Use this and iterate over Rows manually when the memory load of Select() might be

Callers

nothing calls this directly

Calls 1

MapScanFunction · 0.85

Tested by

no test coverage detected