database/sql.Rows.Scan (method)
40 uses
database/sql (current package)
sql.go#L3123: func (rs *Rows) Scan(dest ...interface{}) error {
sql.go#L3237: err := r.rows.Scan(dest...)
github.com/golang-migrate/migrate/v4/database/postgres
postgres.go#L318: if err := tables.Scan(&tableName); err != nil {
golang.org/x/pkgsite/internal/database
reflect.go#L153: if err := rows.Scan(scanner(e.Interface())...); err != nil {
golang.org/x/pkgsite/internal/postgres
clean.go#L62: if err := rows.Scan(&mv.ModulePath, &mv.Version); err != nil {
clean.go#L103: if err := rows.Scan(&v); err != nil {
details.go#L48: mi, err := scanModuleInfo(rows.Scan)
insert_module.go#L482: if err := rows.Scan(&unitID, &pathID); err != nil {
insert_module.go#L541: if err := rows.Scan(&id, &unitID, &goos, &goarch); err != nil {
licenses.go#L115: if err := rows.Scan(pq.Array(&licenseTypes), &lic.FilePath, &lic.Contents, &covBytes); err != nil {
package_symbol.go#L83: if err := rows.Scan(
package_symbol.go#L174: if err := rows.Scan(
path.go#L41: if err := rows.Scan(&p, &sp); err != nil {
path.go#L122: if err := rows.Scan(&pathID, &path); err != nil {
postgres.go#L122: if err := rows.Scan(&s); err != nil {
requeue.go#L149: return rows.Scan(append(dests, &latest, &npkg)...)
search.go#L277: if err := rows.Scan(&r.PackagePath, &r.Version, &r.ModulePath, &r.CommitTime,
search.go#L313: if err := rows.Scan(&r.PackagePath, &r.Version, &r.ModulePath, &r.CommitTime,
search.go#L389: if err := rows.Scan(&r.PackagePath, &r.Version, &r.ModulePath, &r.CommitTime,
search.go#L473: if err := rows.Scan(&path, &name, database.NullIsEmpty(&synopsis), pq.Array(&licenseTypes), &redist); err != nil {
search.go#L720: if err := rows.Scan(&a.PackagePath, &a.ModulePath, &a.Version, &a.Synopsis, &redist,
search.go#L776: if err := rows.Scan(&p); err != nil {
search.go#L808: if err := rows.Scan(&from, &fromMod, &to); err != nil {
search.go#L870: if err := rows.Scan(&path, &old, &new); err != nil {
search.go#L1032: if err := rows.Scan(&ppath, &v); err != nil {
symbol.go#L101: if err := rows.Scan(&id, &docID, &pkgsymID); err != nil {
symbol.go#L193: if err := rows.Scan(&id, &pathID, &symbolID, &parentSymbolID, &synopsis); err != nil {
symbol.go#L325: if err := rows.Scan(&id, &name); err != nil {
symbol.go#L387: if err := rows.Scan(
symbol_history.go#L125: if err := rows.Scan(&n, &v); err != nil {
unit.go#L383: if err := rows.Scan(
unit.go#L447: if err := rows.Scan(database.NullIsEmpty(&bc.GOOS), database.NullIsEmpty(&bc.GOARCH), &unitID, &pathID, &moduleID); err != nil {
unit.go#L614: if err := rows.Scan(&p.id, &p.path, &p.moduleID, &p.name, pq.Array(&p.licenseTypes),
version.go#L88: mi, err := scanModuleInfo(rows.Scan)
version.go#L228: if err := rows.Scan(&pv.path, &pv.version); err != nil {
version.go#L338: if err := rows.Scan(&modulePath, &raw, &cooked, &good, &goModBytes); err != nil {
version_map.go#L106: if err := rows.Scan(
versionstate.go#L286: v, err := scanModuleVersionState(rows.Scan)
versionstate.go#L369: if err := rows.Scan(&s.PackagePath, &s.ModulePath, &s.Version,
versionstate.go#L446: if err := rows.Scan(&status, &indexTimestamp, &count); err != nil {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |