Derek Jones | 8ede1a2 | 2011-10-05 13:34:52 -0500 | [diff] [blame] | 1 | ################## |
| 2 | The Database Class |
| 3 | ################## |
| 4 | |
| 5 | CodeIgniter comes with a full-featured and very fast abstracted database |
| 6 | class that supports both traditional structures and Active Record |
| 7 | patterns. The database functions offer clear, simple syntax. |
| 8 | |
Derek Jones | 8ede1a2 | 2011-10-05 13:34:52 -0500 | [diff] [blame] | 9 | .. toctree:: |
Derek Jones | 8ede1a2 | 2011-10-05 13:34:52 -0500 | [diff] [blame] | 10 | :titlesonly: |
Derek Jones | 8ede1a2 | 2011-10-05 13:34:52 -0500 | [diff] [blame] | 11 | |
Derek Jones | 619b122 | 2011-10-10 16:26:27 -0500 | [diff] [blame] | 12 | Quick Start: Usage Examples <examples> |
| 13 | Database Configuration <configuration> |
| 14 | Connecting to a Database <connecting> |
| 15 | Running Queries <queries> |
| 16 | Generating Query Results <results> |
| 17 | Query Helper Functions <helpers> |
| 18 | Active Record Class <active_record> |
| 19 | Transactions <transactions> |
| 20 | Table MetaData <table_data> |
| 21 | Field MetaData <fields> |
| 22 | Custom Function Calls <call_function> |
| 23 | Query Caching <caching> |
| 24 | Database Manipulation with Database Forge <forge> |
| 25 | Database Utilities Class <utilities> |