aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
AgeCommit message (Expand)Author
2022-03-27Add license (GNU GPLv3+)v0.0.1Teddy Wing
2022-03-20main: Print errors to standard error instead of panicking with `unwrap`Teddy Wing
2022-03-20main: Add an option to include the primary key in outputTeddy Wing
2022-03-20select: Exclude primary key column unless given excluded columnsTeddy Wing
2022-03-20select(): Allow columns to be excluded from YAML output hashTeddy Wing
2022-03-19main: Emit multiline YAML outputTeddy Wing
2022-03-19main: Write a newline after YAML outputTeddy Wing
2022-03-19main: Write YAML to standard outputTeddy Wing
2022-03-19main: Try to emit serialized YAML to standard outputTeddy Wing
2022-03-19main: If `primary_key` option is given, select by given column nameTeddy Wing
2022-03-19main: Use `Result` from `yaqlite::select()`Teddy Wing
2022-03-13main(): Idea for custom column selectionTeddy Wing
2022-03-13main(): Remove debug outputTeddy Wing
2022-03-13main(): Accept input YAML from standard inputTeddy Wing
2022-03-13main(): Remove unnecessary column names commentTeddy Wing
2022-03-13main(): Remove "Hello, world" printTeddy Wing
2022-03-13main(): Move code to `insert` subcommandTeddy Wing
2022-03-13main(): Add subcommands and argumentsTeddy Wing
2022-03-13main(): Start adding command line argument parsingTeddy Wing
2022-03-13insert(): Remove `unwrap()`sTeddy Wing
2022-03-13main(): Remove `get_column_names()` callTeddy Wing
2022-03-12Add an `insert()` function for inserting YAML in databaseTeddy Wing
2022-03-12Move `yaml_extract()` to `yaqlite::yaml::extract()`Teddy Wing
2022-03-12get_column_names(): Get table name from argumentTeddy Wing
2022-03-12yaml_extract(): Remove old commentsTeddy Wing
2022-03-12Move `get_column_names()` to `sqlite` moduleTeddy Wing
2022-03-12get_column_names(): Remove irrelevant commentsTeddy Wing
2022-03-12get_column_names(): Restore `Zero` valueTeddy Wing
2022-03-12Move `Yaml` newtype to a new module in library crateTeddy Wing
2022-03-12yaml_extract(): Don't try to insert data for nonexistent columnsTeddy Wing
2022-03-12Convert `yaml::Yaml` values to `rusqlite::ToSql`Teddy Wing
2022-03-12yaml_extract: Trying to build up a SQL insert statementTeddy Wing
2022-03-10Start encoding SQLite affinity rulesTeddy Wing
2022-03-09get_column_names(): Add a note to map to the enum type instead of StringTeddy Wing
2022-03-09get_column_names(): Also get column typeTeddy Wing
2022-03-09yaml_extract(): Fix code from transaction argument ideaTeddy Wing
2022-03-09Add TODO for column typeTeddy Wing
2022-03-09Idea for inserting values from YAML into SQLite tableTeddy Wing
2022-03-09Check if YAML hash key matches column nameTeddy Wing
2022-03-09get_column_names(): Put column names in a `HashMap`Teddy Wing
2022-03-08get_column_names(): Remove transaction codeTeddy Wing
2022-03-08Get column names from SQLite tableTeddy Wing
2022-03-08Try extracting YAML dataTeddy Wing
2022-03-07Try reading and parsing a YAML fileTeddy Wing
2022-03-07New Rust 1.59.0 projectTeddy Wing