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
/
main.rs
Age
Commit message (
Expand
)
Author
2022-03-27
Add license (GNU GPLv3+)
v0.0.1
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
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-13
main(): Idea for custom column selection
Teddy Wing
2022-03-13
main(): Remove debug output
Teddy Wing
2022-03-13
main(): Accept input YAML from standard input
Teddy Wing
2022-03-13
main(): Remove unnecessary column names comment
Teddy Wing
2022-03-13
main(): Remove "Hello, world" print
Teddy Wing
2022-03-13
main(): Move code to `insert` subcommand
Teddy Wing
2022-03-13
main(): Add subcommands and arguments
Teddy Wing
2022-03-13
main(): Start adding command line argument parsing
Teddy Wing
2022-03-13
insert(): Remove `unwrap()`s
Teddy Wing
2022-03-13
main(): Remove `get_column_names()` call
Teddy Wing
2022-03-12
Add an `insert()` function for inserting YAML in database
Teddy Wing
2022-03-12
Move `yaml_extract()` to `yaqlite::yaml::extract()`
Teddy Wing
2022-03-12
get_column_names(): Get table name from argument
Teddy Wing
2022-03-12
yaml_extract(): Remove old comments
Teddy Wing
2022-03-12
Move `get_column_names()` to `sqlite` module
Teddy Wing
2022-03-12
get_column_names(): Remove irrelevant comments
Teddy Wing
2022-03-12
get_column_names(): Restore `Zero` value
Teddy Wing
2022-03-12
Move `Yaml` newtype to a new module in library crate
Teddy Wing
2022-03-12
yaml_extract(): Don't try to insert data for nonexistent columns
Teddy Wing
2022-03-12
Convert `yaml::Yaml` values to `rusqlite::ToSql`
Teddy Wing
2022-03-12
yaml_extract: Trying to build up a SQL insert statement
Teddy Wing
2022-03-10
Start encoding SQLite affinity rules
Teddy Wing
2022-03-09
get_column_names(): Add a note to map to the enum type instead of String
Teddy Wing
2022-03-09
get_column_names(): Also get column type
Teddy Wing
2022-03-09
yaml_extract(): Fix code from transaction argument idea
Teddy Wing
2022-03-09
Add TODO for column type
Teddy Wing
2022-03-09
Idea for inserting values from YAML into SQLite table
Teddy Wing
2022-03-09
Check if YAML hash key matches column name
Teddy Wing
2022-03-09
get_column_names(): Put column names in a `HashMap`
Teddy Wing
2022-03-08
get_column_names(): Remove transaction code
Teddy Wing
2022-03-08
Get column names from SQLite table
Teddy Wing
2022-03-08
Try extracting YAML data
Teddy Wing
2022-03-07
Try reading and parsing a YAML file
Teddy Wing
2022-03-07
New Rust 1.59.0 project
Teddy Wing