FieldDescriptions returns the field descriptions for the current result set. The returned slice is only valid until the ResultReader is closed. It may return nil (for example, if the query did not return a result set or an error was encountered.)
()
| 1786 | // the ResultReader is closed. It may return nil (for example, if the query did not return a result set or an error was |
| 1787 | // encountered.) |
| 1788 | func (rr *ResultReader) FieldDescriptions() []FieldDescription { |
| 1789 | return rr.fieldDescriptions |
| 1790 | } |
| 1791 | |
| 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. |