Scan copies the columns from the matched row into the values pointed at by dest. If more than one row matches the query, Scan uses the first row and discards the rest. If no row matches the query, Scan returns ErrNoRows.
(dest ...interface{})
| 308 | // Scan uses the first row and discards the rest. If no row matches |
| 309 | // the query, Scan returns ErrNoRows. |
| 310 | func (r *Row) Scan(dest ...interface{}) error { |
| 311 | return r.row.Scan(dest...) |
| 312 | } |
no outgoing calls
no test coverage detected