StructScan a single Row into dest.
(dest interface{})
| 794 | |
| 795 | // StructScan a single Row into dest. |
| 796 | func (r *Row) StructScan(dest interface{}) error { |
| 797 | return r.scanAny(dest, true) |
| 798 | } |
| 799 | |
| 800 | // SliceScan a row, returning a []interface{} with values similar to MapScan. |
| 801 | // This function is primarily intended for use where the number of columns |