diff options
author | katzgrau <devnull@localhost> | 2011-02-02 22:33:05 +0100 |
---|---|---|
committer | katzgrau <devnull@localhost> | 2011-02-02 22:33:05 +0100 |
commit | 5fd02675ed3d079c2719374b890fac599a2ef991 (patch) | |
tree | 1b5db2d5daf4023ecd382bdce952b1a52fc5ade0 /user_guide/database/configuration.html | |
parent | 4b679a786af0c35486ff8a32d67aea3a58134fdd (diff) |
Added a better explanation for the 'autoinit' db option. Side note: should that really be true by default?
Diffstat (limited to 'user_guide/database/configuration.html')
-rw-r--r-- | user_guide/database/configuration.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide/database/configuration.html b/user_guide/database/configuration.html index e9db5fc87..d71cd34db 100644 --- a/user_guide/database/configuration.html +++ b/user_guide/database/configuration.html @@ -134,7 +134,7 @@ for the primary connection, but it too can be renamed to something more relevant <li><strong>char_set</strong> - The character set used in communicating with the database.</li> <li><strong>dbcollat</strong> - The character collation used in communicating with the database.</li> <li><strong>swap_pre</strong> - A default table prefix that should be swapped with <var>dbprefix</var>. This is useful for distributed applications where you might run manually written queries, and need the prefix to still be customizable by the end user.</li> -<li><strong>autoinit</strong> - Whether or not to automatically initialize the database.</li> +<li><strong>autoinit</strong> - Whether or not to automatically connect to the database when the library loads. If set to false, the connection will take place prior to executing the first query.</li> <li><strong>stricton</strong> - TRUE/FALSE (boolean) - Whether to force "Strict Mode" connections, good for ensuring strict SQL while developing an application.</li> <li><strong>port</strong> - The database port number. To use this value you have to add a line to the database config array.<code>$db['default']['port'] = 5432;</code> </ul> |