This package can manipulate database table records using a trait.
It provides traits that can establish database connections and perform CRUD operations with any table in the database that was connected. Currently it can:
- Insert table records using an array of values
- Retrieve a limited range of table records
- Search for table records that match a condition
- Delete a given table record
- Update table records that match a condition
- Retrieve one table record that matches a condition
- Count table records that match a condition |