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
/
select.rs
Age
Commit message (
Expand
)
Author
2022-03-27
Add license (GNU GPLv3+)
v0.0.1
Teddy Wing
2022-03-23
select: Add function documentation
Teddy Wing
2022-03-21
Add placeholders for code documentation reminders
Teddy Wing
2022-03-21
select: Fix test by adding new argument
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
select: Idea for column exclusion
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
2022-03-18
select(): Remove parameterized primary key column name
Teddy Wing
2022-03-18
select(): Debug the parameterized SQL query
Teddy Wing
2022-03-18
select(): Fix off-by-one error in column loop
Teddy Wing
2022-03-18
select(): Tried to debug lack of results from `SELECT` query
Teddy Wing
2022-03-18
select(): Trying to inspect data queried from database
Teddy Wing
2022-03-17
select(): Make `data` column Vec mutable
Teddy Wing
2022-03-16
select(): Trying to convert a SQLite row to `yaml_rust::Yaml`
Teddy Wing
2022-03-15
select(): Add a test that invokes the function and prints the result
Teddy Wing
2022-03-14
Idea for selecting a record from the database as YAML
Teddy Wing