MCPcopy
hub / github.com/jackc/pgx / Scan

Method Scan

pgxpool/rows.go:69–75  ·  view source on GitHub ↗
(dest ...any)

Source from the content-addressed store, hash-verified

67}
68
69func (rows *poolRows) Scan(dest ...any) error {
70 err := rows.r.Scan(dest...)
71 if err != nil {
72 rows.Close()
73 }
74 return err
75}
76
77func (rows *poolRows) Values() ([]any, error) {
78 values, err := rows.r.Values()

Callers

nothing calls this directly

Calls 2

CloseMethod · 0.95
ScanMethod · 0.65

Tested by

no test coverage detected