mirror of https://github.com/jackc/pgx.git
Document that generic helpers call rows.Close()
Existing generic helpers always call defer rows.Close(). Examples of their usage also omit external defer rows.Close() call. For clarity, state that explicitly, because that's another point why one would want to switch to generic helpers from manually written rows.Next() loop.pull/2010/head
parent
6f0deff015
commit
e4f72071f8
2
doc.go
2
doc.go
|
@ -23,7 +23,7 @@ github.com/jackc/pgx/v5/pgxpool for a concurrency safe connection pool.
|
||||||
Query Interface
|
Query Interface
|
||||||
|
|
||||||
pgx implements Query in the familiar database/sql style. However, pgx provides generic functions such as CollectRows and
|
pgx implements Query in the familiar database/sql style. However, pgx provides generic functions such as CollectRows and
|
||||||
ForEachRow that are a simpler and safer way of processing rows than manually calling rows.Next(), rows.Scan, and
|
ForEachRow that are a simpler and safer way of processing rows than manually calling defer rows.Close(), rows.Next(), rows.Scan, and
|
||||||
rows.Err().
|
rows.Err().
|
||||||
|
|
||||||
CollectRows can be used collect all returned rows into a slice.
|
CollectRows can be used collect all returned rows into a slice.
|
||||||
|
|
8
rows.go
8
rows.go
|
@ -419,6 +419,8 @@ type CollectableRow interface {
|
||||||
type RowToFunc[T any] func(row CollectableRow) (T, error)
|
type RowToFunc[T any] func(row CollectableRow) (T, error)
|
||||||
|
|
||||||
// AppendRows iterates through rows, calling fn for each row, and appending the results into a slice of T.
|
// AppendRows iterates through rows, calling fn for each row, and appending the results into a slice of T.
|
||||||
|
//
|
||||||
|
// This function closes the rows automatically on return.
|
||||||
func AppendRows[T any, S ~[]T](slice S, rows Rows, fn RowToFunc[T]) (S, error) {
|
func AppendRows[T any, S ~[]T](slice S, rows Rows, fn RowToFunc[T]) (S, error) {
|
||||||
defer rows.Close()
|
defer rows.Close()
|
||||||
|
|
||||||
|
@ -438,12 +440,16 @@ func AppendRows[T any, S ~[]T](slice S, rows Rows, fn RowToFunc[T]) (S, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// CollectRows iterates through rows, calling fn for each row, and collecting the results into a slice of T.
|
// CollectRows iterates through rows, calling fn for each row, and collecting the results into a slice of T.
|
||||||
|
//
|
||||||
|
// This function closes the rows automatically on return.
|
||||||
func CollectRows[T any](rows Rows, fn RowToFunc[T]) ([]T, error) {
|
func CollectRows[T any](rows Rows, fn RowToFunc[T]) ([]T, error) {
|
||||||
return AppendRows([]T{}, rows, fn)
|
return AppendRows([]T{}, rows, fn)
|
||||||
}
|
}
|
||||||
|
|
||||||
// CollectOneRow calls fn for the first row in rows and returns the result. If no rows are found returns an error where errors.Is(ErrNoRows) is true.
|
// CollectOneRow calls fn for the first row in rows and returns the result. If no rows are found returns an error where errors.Is(ErrNoRows) is true.
|
||||||
// CollectOneRow is to CollectRows as QueryRow is to Query.
|
// CollectOneRow is to CollectRows as QueryRow is to Query.
|
||||||
|
//
|
||||||
|
// This function closes the rows automatically on return.
|
||||||
func CollectOneRow[T any](rows Rows, fn RowToFunc[T]) (T, error) {
|
func CollectOneRow[T any](rows Rows, fn RowToFunc[T]) (T, error) {
|
||||||
defer rows.Close()
|
defer rows.Close()
|
||||||
|
|
||||||
|
@ -469,6 +475,8 @@ func CollectOneRow[T any](rows Rows, fn RowToFunc[T]) (T, error) {
|
||||||
// CollectExactlyOneRow calls fn for the first row in rows and returns the result.
|
// CollectExactlyOneRow calls fn for the first row in rows and returns the result.
|
||||||
// - If no rows are found returns an error where errors.Is(ErrNoRows) is true.
|
// - If no rows are found returns an error where errors.Is(ErrNoRows) is true.
|
||||||
// - If more than 1 row is found returns an error where errors.Is(ErrTooManyRows) is true.
|
// - If more than 1 row is found returns an error where errors.Is(ErrTooManyRows) is true.
|
||||||
|
//
|
||||||
|
// This function closes the rows automatically on return.
|
||||||
func CollectExactlyOneRow[T any](rows Rows, fn RowToFunc[T]) (T, error) {
|
func CollectExactlyOneRow[T any](rows Rows, fn RowToFunc[T]) (T, error) {
|
||||||
defer rows.Close()
|
defer rows.Close()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue