RowError allows to set an error which will be returned when a given row number is read
(row int, err error)
| 156 | // which will be returned when a given |
| 157 | // row number is read |
| 158 | func (r *Rows) RowError(row int, err error) *Rows { |
| 159 | r.nextErr[row] = err |
| 160 | return r |
| 161 | } |
| 162 | |
| 163 | // AddRow composed from database driver.Value slice |
| 164 | // return the same instance to perform subsequent actions. |
no outgoing calls