type database/sql.Rows
35 uses
database/sql (current package)
convert.go#L230: func convertAssignRows(dest, src any, rows *Rows) error {
convert.go#L331: case *Rows:
convert.go#L339: *d = Rows{
sql.go#L1737: func (db *DB) QueryContext(ctx context.Context, query string, args ...any) (*Rows, error) {
sql.go#L1738: var rows *Rows
sql.go#L1754: func (db *DB) Query(query string, args ...any) (*Rows, error) {
sql.go#L1758: func (db *DB) query(ctx context.Context, query string, args []any, strategy connReuseStrategy) (*Rows, error) {
sql.go#L1771: func (db *DB) queryDC(ctx, txctx context.Context, dc *driverConn, releaseConn func(error), query string, args []any) (*Rows, error) {
sql.go#L1795: rows := &Rows{
sql.go#L1825: rows := &Rows{
sql.go#L2032: func (c *Conn) QueryContext(ctx context.Context, query string, args ...any) (*Rows, error) {
sql.go#L2529: func (tx *Tx) QueryContext(ctx context.Context, query string, args ...any) (*Rows, error) {
sql.go#L2542: func (tx *Tx) Query(query string, args ...any) (*Rows, error) {
sql.go#L2785: func (s *Stmt) QueryContext(ctx context.Context, args ...any) (*Rows, error) {
sql.go#L2790: var rows *Rows
sql.go#L2802: rows = &Rows{
sql.go#L2837: func (s *Stmt) Query(args ...any) (*Rows, error) {
sql.go#L2929: type Rows struct {
sql.go#L2976: func (rs *Rows) lasterrOrErrLocked(err error) error {
sql.go#L2987: func (rs *Rows) initContextClose(ctx, txctx context.Context) {
sql.go#L3004: func (rs *Rows) awaitDone(ctx, txctx, closectx context.Context) {
sql.go#L3029: func (rs *Rows) Next() bool {
sql.go#L3052: func (rs *Rows) nextLocked() (doClose, ok bool) {
sql.go#L3095: func (rs *Rows) NextResultSet() bool {
sql.go#L3136: func (rs *Rows) Err() error {
sql.go#L3158: func (rs *Rows) rawbuf() []byte {
sql.go#L3168: func (rs *Rows) setrawbuf(b []byte) RawBytes {
sql.go#L3183: func (rs *Rows) Columns() ([]string, error) {
sql.go#L3200: func (rs *Rows) ColumnTypes() ([]*ColumnType, error) {
sql.go#L3365: func (rs *Rows) Scan(dest ...any) error {
sql.go#L3411: func (rs *Rows) closemuRUnlockIfHeldByScan() {
sql.go#L3429: var rowsCloseHook = func() func(*Rows, *error) { return nil }
sql.go#L3435: func (rs *Rows) Close() error {
sql.go#L3444: func (rs *Rows) close(err error) error {
sql.go#L3480: rows *Rows