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-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
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-18
yaml::sql::Yaml: Make this type `pub(crate)`
Teddy Wing
[next]