| Age | Commit message (Collapse) | Author |
|
Creates a map from column name to type.
|
|
|
|
Want to translate YAML types to SQLite types.
|
|
Need to figure out how to insert `table_columns.len()` values.
|
|
Possibly ugly passing `table_columns` into `yaml_extract`, but just
trying to get things working for now.
Query a "people" DB table instead as that matches the test YAML file.
|
|
Make it easier to find out if a column name exists in the table.
|
|
We probably don't even need a transaction for a `SELECT`. Get rid of
that code and remove the `mut` on `dbconn` which was only necessary for
the transaction.
|
|
Eliminated the transaction because of a borrow problem.
|
|
|
|
|
|
$ rustc --version
rustc 1.59.0 (9d1b2106e 2022-02-23)
$ cargo init --bin
|