index
:
yaqlite
master
update
A bridge between YAML and SQLite
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
lib.rs
Age
Commit message (
Expand
)
Author
2022-03-27
Add license (GNU GPLv3+)
v0.0.1
Teddy Wing
2022-03-23
lib: Add documentation for `Error` type
Teddy Wing
2022-03-21
Add placeholders for code documentation reminders
Teddy Wing
2022-03-21
lib: Move `insert()` to a new module
Teddy Wing
2022-03-21
Add a couple of notes for code cleanup
Teddy Wing
2022-03-19
main: If `primary_key` option is given, select by given column name
Teddy Wing
2022-03-14
Idea for selecting a record from the database as YAML
Teddy Wing
2022-03-13
yaqlite::Error: Include `rusqlite` error description
Teddy Wing
2022-03-13
insert(): Remove `unwrap()`s
Teddy Wing
2022-03-13
extract(): Remove `unwrap()`s
Teddy Wing
2022-03-13
get_column_names(): Remove `unwrap()`s
Teddy Wing
2022-03-13
insert(): Test that an array of YAML records get inserted
Teddy Wing
2022-03-13
insert(): Add test for non-array YAML hash
Teddy Wing
2022-03-13
insert(): Add a test for nonexistent column handling
Teddy Wing
2022-03-13
insert(): Two new test ideas
Teddy Wing
2022-03-13
inserts_yaml_in_database(): Generalise test code
Teddy Wing
2022-03-13
yaqlite::insert(): Add test
Teddy Wing
2022-03-12
Add an `insert()` function for inserting YAML in database
Teddy Wing
2022-03-12
Move `Yaml` newtype to a new module in library crate
Teddy Wing
2022-03-10
Start encoding SQLite affinity rules
Teddy Wing
2022-03-09
Idea for getting SQLite type affinity from a type string
Teddy Wing