Close closes the Rows, preventing further enumeration. If Next is called and returns false and there are no further result sets, the Rows are closed automatically and it will suffice to check the result of Err. Close is idempotent and does not affect the result of Err.
()
| 229 | // the Rows are closed automatically and it will suffice to check the |
| 230 | // result of Err. Close is idempotent and does not affect the result of Err. |
| 231 | Close() error |
| 232 | |
| 233 | // Scan copies the columns in the current row into the values pointed at by dest. |
| 234 | // The number of values in dest must be the same as the number of columns in Rows. |
no outgoing calls
no test coverage detected