sql2csv

Crates.iosql2csv
lib.rssql2csv
version0.4.0
sourcesrc
created_at2020-02-25 15:41:39.369755
updated_at2021-12-29 03:59:28.586478
descriptionExport SQL query to csv file
homepage
repositoryhttps://github.com/nottxy/sql2csv
max_upload_size
id212438
size30,081
Bob (nottxy)

documentation

https://docs.rs/sql2csv

README

Install

cargo install sql2csv

Usage

Query with inline SQL

sql2csv \
    --db "postgres://postgres@localhost/test" \
    --out "export.csv" \
    inline \
    --sql "SELECT id, name FROM users" \
    --header "id, name" 

Query with SQL from TOML file

sql2csv \
    --db "postgres://postgres@localhost/test" \
    --out "export.csv" \
    file \
    --file test.toml
Commit count: 9

cargo fmt