MapScan using this Rows.
(dest map[string]interface{})
| 734 | |
| 735 | // MapScan using this Rows. |
| 736 | func (r *Row) MapScan(dest map[string]interface{}) error { |
| 737 | return MapScan(r, dest) |
| 738 | } |
| 739 | |
| 740 | func (r *Row) scanAny(dest interface{}, structOnly bool) error { |
| 741 | if r.err != nil { |