Direct Database Access
The packages\base\db class is used to interact with the database.
Object-Oriented Database Access
The dbObject class is used to model database tables.
Pagination
The rows fetched from the database according to the submitted query can sometimes be very numerous, and displaying all of them on a single page causes clutter. To improve performance and UX, the rows should be displayed with pagination. To paginate the rows, the packages\base\views\Listview class has been created in the framework.