start-databases.md 789 Bytes
Newer Older
1 2 3 4
Working with Databases
======================

> Note: This section is under development.
Qiang Xue committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

In this section, we will describe how to create a new page to display data fetched from a database table.
To achieve this goal, you will create an [action](structure-controllers.md), a [view](structure-views.md),
and an [Active Record](db-active-record.md) model that can be used to fetch and represent database data.

Through this tutorial, you will learn

* How to configure database connections;
* How to define an Active Record class;
* How to query data using the Active Record class;
* How to display data in a view in a paginated fashion.


Creating a Model
----------------

Creating an Action
------------------

Creating a View
---------------

How It Works
------------

Summary
-------