blob: 7ccb8fb0061a7d48023b60587d3012ec42fae304 [file] [log] [blame]
Derek Jones8ede1a22011-10-05 13:34:52 -05001##################
2The Database Class
3##################
4
5CodeIgniter comes with a full-featured and very fast abstracted database
Jamie Rumbelow7efad202012-02-19 12:37:00 +00006class that supports both traditional structures and Query Builder
Derek Jones8ede1a22011-10-05 13:34:52 -05007patterns. The database functions offer clear, simple syntax.
8
Derek Jones8ede1a22011-10-05 13:34:52 -05009.. toctree::
Derek Jones8ede1a22011-10-05 13:34:52 -050010 :titlesonly:
Derek Jones8ede1a22011-10-05 13:34:52 -050011
Derek Jones619b1222011-10-10 16:26:27 -050012 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>
Jamie Rumbelow7efad202012-02-19 12:37:00 +000018 Query Builder Class <query_builder>
Derek Jones619b1222011-10-10 16:26:27 -050019 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>