Values returns the decoded row values. As with Scan(), it is an error to call Values without first calling Next() and checking that it returned true.
()
| 60 | // call Values without first calling Next() and checking that it returned |
| 61 | // true. |
| 62 | Values() ([]any, error) |
| 63 | |
| 64 | // RawValues returns the unparsed bytes of the row values. The returned data is only valid until the next Next |
| 65 | // call or the Rows is closed. |
no outgoing calls