blob: 3b59986be1f5b8e6e4d9cfacf9126556cc95ffd4 (
plain)
1
2
3
4
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
|
##################
The Database Class
##################
CodeIgniter comes with a full-featured and very fast abstracted database
class that supports both traditional structures and Active Record
patterns. The database functions offer clear, simple syntax.
- :doc:`Quick Start: Usage Examples <examples>`
- :doc:`Database Configuration <configuration>`
- :doc:`Connecting to a Database <connecting>`
- :doc:`Running Queries <queries>`
- :doc:`Generating Query Results <results>`
- :doc:`Query Helper Functions <helpers>`
- :doc:`Active Record Class <active_record>`
- :doc:`Transactions <transactions>`
- :doc:`Table MetaData <table_data>`
- :doc:`Field MetaData <fields>`
- :doc:`Custom Function Calls <call_function>`
- :doc:`Query Caching <caching>`
- :doc:`Database manipulation with Database Forge <forge>`
- :doc:`Database Utilities Class <utilities>`
.. toctree::
:glob:
:titlesonly:
:hidden:
*
|