Values returns the current row data. NextRow must have been previously been called. The returned [][]byte is only valid until the next NextRow call or the ResultReader is closed.
()
| 1792 | // Values returns the current row data. NextRow must have been previously been called. The returned [][]byte is only |
| 1793 | // valid until the next NextRow call or the ResultReader is closed. |
| 1794 | func (rr *ResultReader) Values() [][]byte { |
| 1795 | return rr.rowValues |
| 1796 | } |
| 1797 | |
| 1798 | // Close consumes any remaining result data and returns the command tag or |
| 1799 | // error. |