Read a parsed row of data from a table after a :sql:`COPY TO` operation. Return `!None` when the data is finished. Note that the records returned will be tuples of unparsed strings or bytes, unless data types are specified using `set_types()`.
(self)
| 103 | yield record |
| 104 | |
| 105 | def read_row(self) -> tuple[Any, ...] | None: |
| 106 | """ |
| 107 | Read a parsed row of data from a table after a :sql:`COPY TO` operation. |
| 108 | |
| 109 | Return `!None` when the data is finished. |
| 110 | |
| 111 | Note that the records returned will be tuples of unparsed strings or |
| 112 | bytes, unless data types are specified using `set_types()`. |
| 113 | """ |
| 114 | return self.connection.wait(self._read_row_gen()) |
| 115 | |
| 116 | def write(self, buffer: Buffer | str) -> None: |
| 117 | """ |