aboutsummaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Expand)Author
2022-03-27Add license (GNU GPLv3+)v0.0.1Teddy 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
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