mirror of https://github.com/jackc/pgx.git
Recommend CollectRows in ConnQuery docs
parent
4087119005
commit
9a61fc250f
4
conn.go
4
conn.go
|
@ -611,6 +611,10 @@ type QueryRewriter interface {
|
|||
// returned Rows even if an error is returned. The error will be the available in rows.Err() after rows are closed. It
|
||||
// is allowed to ignore the error returned from Query and handle it in Rows.
|
||||
//
|
||||
// It is possible for a query to return one or more rows before encountering an error. In most cases the rows should be
|
||||
// collected before processing rather than processed while receiving each row. This avoids the possibility of the
|
||||
// application processing rows from a query that the server rejected. The CollectRows function is useful here.
|
||||
//
|
||||
// An implementor of QueryRewriter may be passed as the first element of args. It can rewrite the sql and change or
|
||||
// replace args. For example, NamedArgs is QueryRewriter that implements named arguments.
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue