FieldDescriptions returns the field descriptions of the columns. It may return nil. In particular this can occur when there was an error executing the query.
()
| 40 | // FieldDescriptions returns the field descriptions of the columns. It may return nil. In particular this can occur |
| 41 | // when there was an error executing the query. |
| 42 | FieldDescriptions() []pgconn.FieldDescription |
| 43 | |
| 44 | // Next prepares the next row for reading. It returns true if there is another row and false if no more rows are |
| 45 | // available or a fatal error has occurred. It automatically closes rows upon returning false (whether due to all rows |
no outgoing calls