rust-query
rust-query copied to clipboard
Rusty API for SQLite
Foreign keys to tables that allow deleting should have an index. This is important to make deleting efficient. Note that this is already implied by `#[no_reference]`, maybe the new attribute...
The current integer primary key name is "id" which is likely to be a column name that developers want to use.
I think the `Config::open` function should be fallible. It might also make sense to change the API to distinguish between opening a database and creating a database.
Currently the returned error type is unit `()`, this gives no information even though SQLite will let us know of at least one unique constraint which failed.
Currently, there is no special case for decorrelating a subquery that filters with an equality on something from the outer query. This results in a table join that can be...
This is quite a difficult problem that may or may not be in scope for this project. Current ideas: - Make the schema check only what is required to prevent...