type database/sql/driver.Rows

19 uses

	database/sql/driver (current package)
		driver.go#L212: 	Query(query string, args []Value) (Rows, error)
		driver.go#L226: 	QueryContext(ctx context.Context, query string, args []NamedValue) (Rows, error)
		driver.go#L360: 	Query(args []Value) (Rows, error)
		driver.go#L378: 	QueryContext(ctx context.Context, args []NamedValue) (Rows, error)
		driver.go#L423: type Rows interface {
		driver.go#L448: 	Rows
		driver.go#L465: 	Rows
		driver.go#L475: 	Rows
		driver.go#L491: 	Rows
		driver.go#L500: 	Rows
		driver.go#L511: 	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#L1752: 		var rowsi driver.Rows
		sql.go#L2770: 	var rowsi driver.Rows
		sql.go#L2828: func rowsiFromStatement(ctx context.Context, ci driver.Conn, ds *driverStmt, args ...any) (driver.Rows, error) {
		sql.go#L2919: 	rowsi       driver.Rows
		sql.go#L3175: func rowsColumnInfoSetupConnLocked(rowsi driver.Rows) []*ColumnType {