type database/sql.Rows
31 uses
database/sql (current package)
convert.go#L219: func convertAssignRows(dest, src any, rows *Rows) error {
convert.go#L320: case *Rows:
convert.go#L328: *d = Rows{
sql.go#L1705: func (db *DB) QueryContext(ctx context.Context, query string, args ...any) (*Rows, error) {
sql.go#L1706: var rows *Rows
sql.go#L1727: func (db *DB) Query(query string, args ...any) (*Rows, error) {
sql.go#L1731: func (db *DB) query(ctx context.Context, query string, args []any, strategy connReuseStrategy) (*Rows, error) {
sql.go#L1744: func (db *DB) queryDC(ctx, txctx context.Context, dc *driverConn, releaseConn func(error), query string, args []any) (*Rows, error) {
sql.go#L1768: rows := &Rows{
sql.go#L1798: rows := &Rows{
sql.go#L2008: func (c *Conn) QueryContext(ctx context.Context, query string, args ...any) (*Rows, error) {
sql.go#L2504: func (tx *Tx) QueryContext(ctx context.Context, query string, args ...any) (*Rows, error) {
sql.go#L2517: func (tx *Tx) Query(query string, args ...any) (*Rows, error) {
sql.go#L2766: func (s *Stmt) QueryContext(ctx context.Context, args ...any) (*Rows, error) {
sql.go#L2788: rows := &Rows{
sql.go#L2824: func (s *Stmt) Query(args ...any) (*Rows, error) {
sql.go#L2916: type Rows struct {
sql.go#L2939: func (rs *Rows) lasterrOrErrLocked(err error) error {
sql.go#L2950: func (rs *Rows) initContextClose(ctx, txctx context.Context) {
sql.go#L2965: func (rs *Rows) awaitDone(ctx, txctx context.Context) {
sql.go#L2983: func (rs *Rows) Next() bool {
sql.go#L2994: func (rs *Rows) nextLocked() (doClose, ok bool) {
sql.go#L3037: func (rs *Rows) NextResultSet() bool {
sql.go#L3073: func (rs *Rows) Err() error {
sql.go#L3084: func (rs *Rows) Columns() ([]string, error) {
sql.go#L3101: func (rs *Rows) ColumnTypes() ([]*ColumnType, error) {
sql.go#L3266: func (rs *Rows) Scan(dest ...any) error {
sql.go#L3297: var rowsCloseHook = func() func(*Rows, *error) { return nil }
sql.go#L3303: func (rs *Rows) Close() error {
sql.go#L3307: func (rs *Rows) close(err error) error {
sql.go#L3341: rows *Rows