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
Age
Commit message (
Expand
)
Author
2022-04-05
insert(): Add a test with YAML keys referring to nonexistent columns
update
Teddy Wing
2022-04-02
Add a SQL update function to update a record from YAML
Teddy Wing
2022-04-01
Command::Update: Add a variant to specify primary key without column
Teddy Wing
2022-04-01
yaml::db_insert(): Generalise YAML walking function
Teddy Wing
2022-04-01
Command::Update: Add help text for `primary_key` CLI argument
Teddy Wing
2022-03-31
main::Command: Idea for an `update` subcommand
Teddy Wing
2022-03-27
Add license (GNU GPLv3+)
v0.0.1
Teddy Wing
2022-03-23
extract(): Rename function to `db_insert()`
Teddy Wing
2022-03-23
insert(): Add documentation
Teddy Wing
2022-03-23
get_column_names(): Add documentation
Teddy Wing
2022-03-23
yaml::write: Add documentation
Teddy Wing
2022-03-23
lib: Add documentation for `Error` type
Teddy Wing
2022-03-23
select: Add function documentation
Teddy Wing
2022-03-21
sql: Add documentation
Teddy Wing
2022-03-21
sql: Remove `From` impl for `Yaml` idea comment
Teddy Wing
2022-03-21
Add placeholders for code documentation reminders
Teddy Wing
2022-03-21
get_column_names(): Use `HashSet` instead of `HashMap`
Teddy Wing
2022-03-21
lib: Move `insert()` to a new module
Teddy Wing
2022-03-21
sqlite: Remove unused `affinity()` function
Teddy Wing
2022-03-21
select: Fix test by adding new argument
Teddy Wing
2022-03-21
get_column_names: Idea for column name storage
Teddy Wing
2022-03-21
Add a couple of notes for code cleanup
Teddy Wing
2022-03-20
main: Print errors to standard error instead of panicking with `unwrap`
Teddy Wing
2022-03-20
main: Add an option to include the primary key in output
Teddy Wing
2022-03-20
select: Exclude primary key column unless given excluded columns
Teddy Wing
2022-03-20
select(): Allow columns to be excluded from YAML output hash
Teddy Wing
2022-03-19
main: Emit multiline YAML output
Teddy Wing
2022-03-19
main: Write a newline after YAML output
Teddy Wing
2022-03-19
main: Write YAML to standard output
Teddy Wing
2022-03-19
main: Try to emit serialized YAML to standard output
Teddy Wing
2022-03-19
select: Idea for column exclusion
Teddy Wing
2022-03-19
main: If `primary_key` option is given, select by given column name
Teddy Wing
2022-03-19
main: Use `Result` from `yaqlite::select()`
Teddy Wing
2022-03-19
select: Remove `dbg!` output
Teddy Wing
2022-03-19
select: Handle multiple records found
Teddy Wing
2022-03-19
select: Remove in-progress code ideas
Teddy Wing
2022-03-19
select: Remove unused `HashMap` import
Teddy Wing
2022-03-19
select: Remove `select_by_column()` idea code
Teddy Wing
2022-03-19
select(): Parameterize primary key column name
Teddy Wing
2022-03-19
select(): Column name interface and default primary key column interface
Teddy Wing
2022-03-19
select(): Remove `unwrap()`s
Teddy Wing
2022-03-19
select(): Idea for selecting by a custom column name
Teddy Wing
2022-03-19
select(): Don't include the primary key in the `Yaml` hash
Teddy Wing
2022-03-19
select(): Change `column_name` extraction to `to_owned()`
Teddy Wing
2022-03-19
select(): Change `column_names` to `Vec<String>`
Teddy Wing
2022-03-19
select(): Build a `yaml_rust::yaml::Hash` for each row
Teddy Wing
2022-03-18
select(): Add and check expected value in test
Teddy Wing
2022-03-18
select(): Try building a Yaml hash mapping column names to values
Teddy Wing
2022-03-18
select(): Remove debug and in-progress code
Teddy Wing
2022-03-18
select(): Move primary key column name to format parameter
Teddy Wing
[next]