Next prepares the next result row for reading with the Scan method. It returns true on success, or false if there is no next result row or an error happened while preparing it. Err should be consulted to distinguish between the two cases. Every call to Scan, even the first one, must be preceded b
()
| 278 | // |
| 279 | // Every call to Scan, even the first one, must be preceded by a call to Next. |
| 280 | func (rs *Rows) Next() bool { |
| 281 | return rs.rows.Next() |
| 282 | } |
| 283 | |
| 284 | // Err returns the error, if any, that was encountered during iteration. |
| 285 | // Err may be called after an explicit or implicit Close. |
no outgoing calls