index
:
yaqlite
master
update
A bridge between YAML and SQLite
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
Age
Commit message (
Expand
)
Author
2022-03-28
README: Add a note about pre-built binaries
HEAD
master
Teddy Wing
2022-03-28
Makefile: Add targets for binary packaging
Teddy Wing
2022-03-27
Add license (GNU GPLv3+)
v0.0.1
Teddy Wing
2022-03-27
README: Add installation command for non-Mac platforms
Teddy Wing
2022-03-27
README: Remove extra indentation in `CREATE TABLE` query
Teddy Wing
2022-03-27
README: Change the line breaks in the usage example
Teddy Wing
2022-03-27
README: Add usage example
Teddy Wing
2022-03-27
Start README
Teddy Wing
2022-03-27
yaqlite.1.txt: Add command descriptions
Teddy Wing
2022-03-27
yaqlite.1.txt: Describe subcommand options
Teddy Wing
2022-03-25
yaqlite.1.txt: Add global flags and short subcommand description
Teddy Wing
2022-03-23
Start writing man page
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
[next]