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

Method Values

pgconn/pgconn.go:1794–1796  ·  view source on GitHub ↗

Values returns the current row data. NextRow must have been previously been called. The returned [][]byte is only valid until the next NextRow call or the ResultReader is closed.

()

Source from the content-addressed store, hash-verified

1792// Values returns the current row data. NextRow must have been previously been called. The returned [][]byte is only
1793// valid until the next NextRow call or the ResultReader is closed.
1794func (rr *ResultReader) Values() [][]byte {
1795 return rr.rowValues
1796}
1797
1798// Close consumes any remaining result data and returns the command tag or
1799// error.

Callers 1

ReadMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected