database/sql.Rows.lastcols (field)
9 uses
database/sql (current package)
sql.go#L2791: lastcols []driver.Value
sql.go#L2861: if rs.lastcols == nil {
sql.go#L2862: rs.lastcols = make([]driver.Value, len(rs.rowsi.Columns()))
sql.go#L2865: rs.lasterr = rs.rowsi.Next(rs.lastcols)
sql.go#L2908: rs.lastcols = nil
sql.go#L3137: if rs.lastcols == nil {
sql.go#L3140: if len(dest) != len(rs.lastcols) {
sql.go#L3141: return fmt.Errorf("sql: expected %d destination arguments in Scan, not %d", len(rs.lastcols), len(dest))
sql.go#L3143: for i, sv := range rs.lastcols {
![]() |
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. |