summaryrefslogtreecommitdiffstats
path: root/application/config/database.php
diff options
context:
space:
mode:
authorJamie Rumbelow <jamie@jamierumbelow.net>2012-02-19 13:37:00 +0100
committerJamie Rumbelow <jamie@jamierumbelow.net>2012-02-19 13:37:00 +0100
commit7efad20597ef7e06f8cf837a9f40918d2d3f2727 (patch)
tree0effaff70b6b01042975aab293a340383fbb70bf /application/config/database.php
parent7a2412cfe7f7d8db3eb845542609c476c52efc3d (diff)
Renaming Active Record to Query Builder across the system
Diffstat (limited to 'application/config/database.php')
-rw-r--r--application/config/database.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/application/config/database.php b/application/config/database.php
index bd68db1d8..b1cad9025 100644
--- a/application/config/database.php
+++ b/application/config/database.php
@@ -45,7 +45,7 @@
| ['dbdriver'] The database type. e.g.: mysql. Currently supported:
mysql, mysqli, pdo, postgre, odbc, mssql, sqlite, oci8
| ['dbprefix'] You can add an optional prefix, which will be added
-| to the table name when using the Active Record class
+| to the table name when using the Query Builder class
| ['pconnect'] TRUE/FALSE - Whether to use a persistent connection
| ['db_debug'] TRUE/FALSE - Whether database errors should be displayed.
| ['cache_on'] TRUE/FALSE - Enables/disables query caching
@@ -68,12 +68,12 @@
| The $active_group variable lets you choose which connection group to
| make active. By default there is only one group (the 'default' group).
|
-| The $active_record variables lets you determine whether or not to load
-| the active record class
+| The $query_builder variables lets you determine whether or not to load
+| the query builder class
*/
$active_group = 'default';
-$active_record = TRUE;
+$query_builder = TRUE;
$db['default']['dsn'] = '';
$db['default']['hostname'] = 'localhost';