Expand description
Export table data to CSV files or writers.
The functions here wrap CsvWriter for common export scenarios so callers can pipe table
rows directly into a file or any Write implementor, optionally applying filters or
projections.
Structs§
- CsvExport
Column - Column specification for CSV export.
- CsvWrite
Options - Configuration for writing CSV files.
- CsvWriter
- Builder-style helper for writing CSV data from a table.
Functions§
- export_
csv_ from_ table - Materialize a table scan into a CSV file using column projections.
- export_
csv_ from_ table_ with_ filter - Export a filtered table scan to a CSV file.
- export_
csv_ from_ table_ with_ projections - Export a table scan driven by explicit projections (expressions or columns) into a file.
- export_
csv_ to_ writer_ with_ filter - Stream a filtered table scan into an arbitrary writer.
- export_
csv_ to_ writer_ with_ projections - Export a projected table scan into an arbitrary writer.