Err returns the error, if any, that was encountered during iteration. Err may be called after an explicit or implicit Close.
()
| 284 | // Err returns the error, if any, that was encountered during iteration. |
| 285 | // Err may be called after an explicit or implicit Close. |
| 286 | func (rs *Rows) Err() error { |
| 287 | return rs.rows.Err() |
| 288 | } |
| 289 | |
| 290 | // Scan copies the columns in the current row into the values pointed |
| 291 | // at by dest. |
no outgoing calls
no test coverage detected