MapScan using this Rows.
(dest map[string]interface{})
| 591 | |
| 592 | // MapScan using this Rows. |
| 593 | func (r *Rows) MapScan(dest map[string]interface{}) error { |
| 594 | return MapScan(r, dest) |
| 595 | } |
| 596 | |
| 597 | // StructScan is like sql.Rows.Scan, but scans a single Row into a single Struct. |
| 598 | // Use this and iterate over Rows manually when the memory load of Select() might be |