type github.com/jackc/pgx/v4.connRows
22 uses
github.com/jackc/pgx/v4 (current package)
batch.go#L111: return &connRows{err: br.err, closed: true}, br.err
batch.go#L141: return (*connRow)(rows.(*connRows))
conn.go#L76: preallocatedRows []connRows
conn.go#L533: func (c *Conn) getRows(ctx context.Context, sql string, args []interface{}) *connRows {
conn.go#L535: c.preallocatedRows = make([]connRows, 64)
conn.go#L681: return (*connRow)(rows.(*connRows))
rows.go#L69: type connRow connRows
rows.go#L72: rows := (*connRows)(r)
rows.go#L96: type connRows struct {
rows.go#L116: func (rows *connRows) FieldDescriptions() []pgproto3.FieldDescription {
rows.go#L120: func (rows *connRows) Close() {
rows.go#L159: func (rows *connRows) CommandTag() pgconn.CommandTag {
rows.go#L163: func (rows *connRows) Err() error {
rows.go#L169: func (rows *connRows) fatal(err error) {
rows.go#L178: func (rows *connRows) Next() bool {
rows.go#L193: func (rows *connRows) Scan(dest ...interface{}) error {
rows.go#L232: func (rows *connRows) Values() ([]interface{}, error) {
rows.go#L304: func (rows *connRows) RawValues() [][]byte {
tx.go#L275: return &connRows{closed: true, err: err}, err
tx.go#L284: return (*connRow)(rows.(*connRows))
tx.go#L394: return &connRows{closed: true, err: err}, err
tx.go#L403: return (*connRow)(rows.(*connRows))
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |