Write a record to a table after a :sql:`COPY FROM` operation.
(self, row: Sequence[Any])
| 124 | self._write(data) |
| 125 | |
| 126 | def write_row(self, row: Sequence[Any]) -> None: |
| 127 | """Write a record to a table after a :sql:`COPY FROM` operation.""" |
| 128 | if data := self.formatter.write_row(row): |
| 129 | self._write(data) |
| 130 | |
| 131 | def finish(self, exc: BaseException | None) -> None: |
| 132 | """Terminate the copy operation and free the resources allocated. |
no outgoing calls