ColScanner is an interface used by MapScan and SliceScan
| 68 | |
| 69 | // ColScanner is an interface used by MapScan and SliceScan |
| 70 | type ColScanner interface { |
| 71 | Columns() ([]string, error) |
| 72 | Scan(dest ...interface{}) error |
| 73 | Err() error |
| 74 | } |
| 75 | |
| 76 | // Queryer is an interface used by Get and Select |
| 77 | type Queryer interface { |
nothing calls this directly
no outgoing calls
no test coverage detected