mirror of https://github.com/jackc/pgx.git
parent
29254180ca
commit
b6f5cbd15e
|
@ -18,6 +18,7 @@ func (errRows) Next() bool { return false }
|
||||||
func (e errRows) Scan(dest ...any) error { return e.err }
|
func (e errRows) Scan(dest ...any) error { return e.err }
|
||||||
func (e errRows) Values() ([]any, error) { return nil, e.err }
|
func (e errRows) Values() ([]any, error) { return nil, e.err }
|
||||||
func (e errRows) RawValues() [][]byte { return nil }
|
func (e errRows) RawValues() [][]byte { return nil }
|
||||||
|
func (e errRows) Conn() *pgx.Conn { return nil }
|
||||||
|
|
||||||
type errRow struct {
|
type errRow struct {
|
||||||
err error
|
err error
|
||||||
|
@ -86,6 +87,10 @@ func (rows *poolRows) RawValues() [][]byte {
|
||||||
return rows.r.RawValues()
|
return rows.r.RawValues()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (rows *poolRows) Conn() *pgx.Conn {
|
||||||
|
return rows.r.Conn()
|
||||||
|
}
|
||||||
|
|
||||||
type poolRow struct {
|
type poolRow struct {
|
||||||
r pgx.Row
|
r pgx.Row
|
||||||
c *Conn
|
c *Conn
|
||||||
|
|
8
rows.go
8
rows.go
|
@ -55,6 +55,10 @@ type Rows interface {
|
||||||
// RawValues returns the unparsed bytes of the row values. The returned data is only valid until the next Next
|
// RawValues returns the unparsed bytes of the row values. The returned data is only valid until the next Next
|
||||||
// call or the Rows is closed.
|
// call or the Rows is closed.
|
||||||
RawValues() [][]byte
|
RawValues() [][]byte
|
||||||
|
|
||||||
|
// Conn returns the underlying *Conn on which the query was executed. This may return nil if Rows did not come from a
|
||||||
|
// *Conn (e.g. if it was created by RowsFromResultReader)
|
||||||
|
Conn() *Conn
|
||||||
}
|
}
|
||||||
|
|
||||||
// Row is a convenience wrapper over Rows that is returned by QueryRow.
|
// Row is a convenience wrapper over Rows that is returned by QueryRow.
|
||||||
|
@ -310,6 +314,10 @@ func (rows *baseRows) RawValues() [][]byte {
|
||||||
return rows.values
|
return rows.values
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (rows *baseRows) Conn() *Conn {
|
||||||
|
return rows.conn
|
||||||
|
}
|
||||||
|
|
||||||
type ScanArgError struct {
|
type ScanArgError struct {
|
||||||
ColumnIndex int
|
ColumnIndex int
|
||||||
Err error
|
Err error
|
||||||
|
|
Loading…
Reference in New Issue