Citadel-crud will improve your app's relationship with its Database. Normally, database access leverages a flexible ORM-like system to do whatever you need at the time.
This can muddle the purpose of what your database code is doing. "Add Person" may create a person, and then return them. It's doing creates as well as reads.
Citadel lets you instantiate CRUD components that can work independantly and asynchonously of one another.
In charge of creating items in the database.
In charge of instantiating other objects from the database
In charge of changing items in the database
In charge of deleting items in the database
In charge of abstractying database functions for cross-DBMS compatibility
(i.e binding creators / updators to successfully run)
Better usages of DatabaseConnection, etc