type github.com/Masterminds/squirrel.Row

24 uses

	github.com/Masterminds/squirrel (current package)
		delete_ctx.go#L36: 		return &Row{err: RunnerNotSet}
		delete_ctx.go#L41: 			return &Row{err: RunnerNotQueryRunner}
		delete_ctx.go#L43: 		return &Row{err: NoContextSupport}
		insert.go#L44: 		return &Row{err: RunnerNotSet}
		insert.go#L48: 		return &Row{err: RunnerNotQueryRunner}
		insert_ctx.go#L36: 		return &Row{err: RunnerNotSet}
		insert_ctx.go#L41: 			return &Row{err: RunnerNotQueryRunner}
		insert_ctx.go#L43: 		return &Row{err: NoContextSupport}
		row.go#L11: type Row struct {
		row.go#L17: func (r *Row) Scan(dest ...interface{}) error {
		select.go#L45: 		return &Row{err: RunnerNotSet}
		select.go#L49: 		return &Row{err: RunnerNotQueryRunner}
		select_ctx.go#L36: 		return &Row{err: RunnerNotSet}
		select_ctx.go#L41: 			return &Row{err: RunnerNotQueryRunner}
		select_ctx.go#L43: 		return &Row{err: NoContextSupport}
		squirrel.go#L122: 	return &Row{RowScanner: db.QueryRow(query, args...), err: err}
		squirrel_ctx.go#L92: 	return &Row{RowScanner: db.QueryRowContext(ctx, query, args...), err: err}
		stmtcacher.go#L76: 		return &Row{err: err}
		stmtcacher_ctx.go#L83: 		return &Row{err: err}
		update.go#L47: 		return &Row{err: RunnerNotSet}
		update.go#L51: 		return &Row{err: RunnerNotQueryRunner}
		update_ctx.go#L36: 		return &Row{err: RunnerNotSet}
		update_ctx.go#L41: 			return &Row{err: RunnerNotQueryRunner}
		update_ctx.go#L43: 		return &Row{err: NoContextSupport}