type database/sql/driver.Rows

19 uses

	database/sql/driver (current package)
		driver.go#L213: 	Query(query string, args []Value) (Rows, error)
		driver.go#L227: 	QueryContext(ctx context.Context, query string, args []NamedValue) (Rows, error)
		driver.go#L361: 	Query(args []Value) (Rows, error)
		driver.go#L379: 	QueryContext(ctx context.Context, args []NamedValue) (Rows, error)
		driver.go#L424: type Rows interface {
		driver.go#L449: 	Rows
		driver.go#L466: 	Rows
		driver.go#L476: 	Rows
		driver.go#L493: 	Rows
		driver.go#L502: 	Rows
		driver.go#L514: 	Rows

	database/sql
		convert.go#L329: 	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#L1779: 		var rowsi driver.Rows
		sql.go#L2789: 	var rowsi driver.Rows
		sql.go#L2841: func rowsiFromStatement(ctx context.Context, ci driver.Conn, ds *driverStmt, args ...any) (driver.Rows, error) {
		sql.go#L2932: 	rowsi       driver.Rows
		sql.go#L3274: func rowsColumnInfoSetupConnLocked(rowsi driver.Rows) []*ColumnType {