It provides a base class that can be extended to create both model classes and controller classes for tables stored in Oracle using OCI, in order to access data records.
The model automatically extract metadata for the table, no need to describe them, just set the source table and you can start to retrieve and modify records in the database.
The base classes provide functions that can:
- Create new records
- Update records
- Delete records
- Find records that match given criterion
- Use transactions
- Skip columns |