aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
AgeCommit message (Expand)Author
2022-03-27Add license (GNU GPLv3+)v0.0.1Teddy Wing
2022-03-23lib: Add documentation for `Error` typeTeddy Wing
2022-03-21Add placeholders for code documentation remindersTeddy Wing
2022-03-21lib: Move `insert()` to a new moduleTeddy Wing
2022-03-21Add a couple of notes for code cleanupTeddy Wing
2022-03-19main: If `primary_key` option is given, select by given column nameTeddy Wing
2022-03-14Idea for selecting a record from the database as YAMLTeddy Wing
2022-03-13yaqlite::Error: Include `rusqlite` error descriptionTeddy Wing
2022-03-13insert(): Remove `unwrap()`sTeddy Wing
2022-03-13extract(): Remove `unwrap()`sTeddy Wing
2022-03-13get_column_names(): Remove `unwrap()`sTeddy Wing
2022-03-13insert(): Test that an array of YAML records get insertedTeddy Wing
2022-03-13insert(): Add test for non-array YAML hashTeddy Wing
2022-03-13insert(): Add a test for nonexistent column handlingTeddy Wing
2022-03-13insert(): Two new test ideasTeddy Wing
2022-03-13inserts_yaml_in_database(): Generalise test codeTeddy Wing
2022-03-13yaqlite::insert(): Add testTeddy Wing
2022-03-12Add an `insert()` function for inserting YAML in databaseTeddy Wing
2022-03-12Move `Yaml` newtype to a new module in library crateTeddy Wing
2022-03-10Start encoding SQLite affinity rulesTeddy Wing
2022-03-09Idea for getting SQLite type affinity from a type stringTeddy Wing