RowScanner is the interface that wraps the Scan method. Scan behaves like database/sql.Row.Scan.
| 4 | // |
| 5 | // Scan behaves like database/sql.Row.Scan. |
| 6 | type RowScanner interface { |
| 7 | Scan(...interface{}) error |
| 8 | } |
| 9 | |
| 10 | // Row wraps database/sql.Row to let squirrel return new errors on Scan. |
| 11 | type Row struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…