aboutsummaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Expand)Author
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
2022-03-19select(): Build a `yaml_rust::yaml::Hash` for each rowTeddy Wing
2022-03-18select(): Add and check expected value in testTeddy Wing
2022-03-18select(): Try building a Yaml hash mapping column names to valuesTeddy Wing
2022-03-18select(): Remove debug and in-progress codeTeddy Wing
2022-03-18select(): Move primary key column name to format parameterTeddy Wing
2022-03-18select(): Remove parameterized primary key column nameTeddy Wing
2022-03-18select(): Debug the parameterized SQL queryTeddy Wing
2022-03-18select(): Fix off-by-one error in column loopTeddy Wing
2022-03-18select(): Tried to debug lack of results from `SELECT` queryTeddy Wing
2022-03-18select(): Trying to inspect data queried from databaseTeddy Wing
2022-03-18yaml::sql::Yaml: Make this type `pub(crate)`Teddy Wing
2022-03-17Yaml: Wrap a `Cow<'_, yaml_rust::Yaml>` instead of `yaml_rust::Yaml`Teddy Wing
2022-03-17select(): Make `data` column Vec mutableTeddy Wing
2022-03-16select(): Trying to convert a SQLite row to `yaml_rust::Yaml`Teddy Wing
2022-03-15select(): Add a test that invokes the function and prints the resultTeddy Wing
2022-03-14Add `table_primary_key_column()`Teddy Wing
2022-03-14Idea for selecting a record from the database as YAMLTeddy 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-13yaqlite::Error: Include `rusqlite` error descriptionTeddy Wing
2022-03-13insert(): Remove `unwrap()`sTeddy Wing