type database/sql/driver.Rows

35 uses

	database/sql/driver (current package)
		driver.go#L206: 	Query(query string, args []Value) (Rows, error)
		driver.go#L220: 	QueryContext(ctx context.Context, query string, args []NamedValue) (Rows, error)
		driver.go#L354: 	Query(args []Value) (Rows, error)
		driver.go#L372: 	QueryContext(ctx context.Context, args []NamedValue) (Rows, error)
		driver.go#L417: type Rows interface {
		driver.go#L442: 	Rows
		driver.go#L459: 	Rows
		driver.go#L469: 	Rows
		driver.go#L485: 	Rows
		driver.go#L494: 	Rows
		driver.go#L505: 	Rows

	database/sql
		convert.go#L318: 	case driver.Rows:
		ctxutil.go#L46: func ctxDriverQuery(ctx context.Context, queryerCtx driver.QueryerContext, queryer driver.Queryer, query string, nvdargs []driver.NamedValue) (driver.Rows, error) {
		ctxutil.go#L80: func ctxDriverStmtQuery(ctx context.Context, si driver.Stmt, nvdargs []driver.NamedValue) (driver.Rows, error) {
		sql.go#L1643: 		var rowsi driver.Rows
		sql.go#L2633: 	var rowsi driver.Rows
		sql.go#L2688: func rowsiFromStatement(ctx context.Context, ci driver.Conn, ds *driverStmt, args ...interface{}) (driver.Rows, error) {
		sql.go#L2776: 	rowsi       driver.Rows
		sql.go#L3032: func rowsColumnInfoSetupConnLocked(rowsi driver.Rows) []*ColumnType {

	contrib.go.opencensus.io/integrations/ocsql
		driver.go#L40: 	_ driver.Rows                           = &ocRows{}
		driver.go#L233: func (c ocConn) Query(query string, args []driver.Value) (rows driver.Rows, err error) {
		driver.go#L275: func (c ocConn) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (rows driver.Rows, err error) {
		driver.go#L528: func (s ocStmt) Query(args []driver.Value) (rows driver.Rows, err error) {
		driver.go#L605: func (s ocStmt) QueryContext(ctx context.Context, args []driver.NamedValue) (rows driver.Rows, err error) {
		driver.go#L656: 	parent  driver.Rows
		driver.go#L774: func wrapRows(ctx context.Context, parent driver.Rows, options TraceOptions) driver.Rows {

	github.com/jackc/pgx/v4/stdlib
		sql.go#L342: func (c *Conn) QueryContext(ctx context.Context, query string, argsV []driver.NamedValue) (driver.Rows, error) {
		sql.go#L418: func (s *Stmt) Query(argsV []driver.Value) (driver.Rows, error) {
		sql.go#L422: func (s *Stmt) QueryContext(ctx context.Context, argsV []driver.NamedValue) (driver.Rows, error) {

	github.com/lib/pq
		conn.go#L816: func (cn *conn) Query(query string, args []driver.Value) (driver.Rows, error) {
		conn.go#L1247: func (st *stmt) Query(v []driver.Value) (r driver.Rows, err error) {
		conn_go18.go#L14: func (cn *conn) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error) {
		copy.go#L206: func (ci *copyin) Query(v []driver.Value) (r driver.Rows, err error) {

	golang.org/x/pkgsite/internal/database
		driver.go#L77: func (c *wrapConn) QueryContext(ctx context.Context, q string, args []driver.NamedValue) (driver.Rows, error) {