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 by
()
| 223 | // |
| 224 | // Every call to Scan, even the first one, must be preceded by a call to Next. |
| 225 | Next() bool |
| 226 | |
| 227 | // Close closes the Rows, preventing further enumeration. If Next is called |
| 228 | // and returns false and there are no further result sets, |
no outgoing calls
no test coverage detected