aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Expand)Author
2022-03-28README: Add a note about pre-built binariesHEADmasterTeddy Wing
2022-03-28Makefile: Add targets for binary packagingTeddy Wing
2022-03-27Add license (GNU GPLv3+)v0.0.1Teddy Wing
2022-03-27README: Add installation command for non-Mac platformsTeddy Wing
2022-03-27README: Remove extra indentation in `CREATE TABLE` queryTeddy Wing
2022-03-27README: Change the line breaks in the usage exampleTeddy Wing
2022-03-27README: Add usage exampleTeddy Wing
2022-03-27Start READMETeddy Wing
2022-03-27yaqlite.1.txt: Add command descriptionsTeddy Wing
2022-03-27yaqlite.1.txt: Describe subcommand optionsTeddy Wing
2022-03-25yaqlite.1.txt: Add global flags and short subcommand descriptionTeddy Wing
2022-03-23Start writing man pageTeddy Wing
2022-03-23extract(): Rename function to `db_insert()`Teddy Wing
2022-03-23insert(): Add documentationTeddy Wing
2022-03-23get_column_names(): Add documentationTeddy Wing
2022-03-23yaml::write: Add documentationTeddy Wing
2022-03-23lib: Add documentation for `Error` typeTeddy Wing
2022-03-23select: Add function documentationTeddy Wing
2022-03-21sql: Add documentationTeddy Wing
2022-03-21sql: Remove `From` impl for `Yaml` idea commentTeddy Wing
2022-03-21Add placeholders for code documentation remindersTeddy Wing
2022-03-21get_column_names(): Use `HashSet` instead of `HashMap`Teddy Wing
2022-03-21lib: Move `insert()` to a new moduleTeddy Wing
2022-03-21sqlite: Remove unused `affinity()` functionTeddy Wing
2022-03-21select: Fix test by adding new argumentTeddy Wing
2022-03-21get_column_names: Idea for column name storageTeddy Wing
2022-03-21Add a couple of notes for code cleanupTeddy 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-19select: Idea for column exclusionTeddy 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-19select: Remove `dbg!` outputTeddy Wing
2022-03-19select: Handle multiple records foundTeddy Wing
2022-03-19select: Remove in-progress code ideasTeddy Wing
2022-03-19select: Remove unused `HashMap` importTeddy Wing
2022-03-19select: Remove `select_by_column()` idea codeTeddy Wing
2022-03-19select(): Parameterize primary key column nameTeddy Wing
2022-03-19select(): Column name interface and default primary key column interfaceTeddy Wing
2022-03-19select(): Remove `unwrap()`sTeddy Wing
2022-03-19select(): Idea for selecting by a custom column nameTeddy Wing
2022-03-19select(): Don't include the primary key in the `Yaml` hashTeddy Wing
2022-03-19select(): Change `column_name` extraction to `to_owned()`Teddy Wing
2022-03-19select(): Change `column_names` to `Vec<String>`Teddy Wing