diff options
author | Andrey Andreev <narf@devilix.net> | 2015-02-12 14:32:29 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2015-02-12 14:32:29 +0100 |
commit | e263efa0631bde3e00427554571e243e3546fc22 (patch) | |
tree | 24b553bca4262fb2947fcb056e3d1bd790d34b19 /user_guide_src | |
parent | 00025885b8042114c3b1859855656a94316b4e57 (diff) |
[ci skip] Correct db config docs about 'autoinit'
Diffstat (limited to 'user_guide_src')
-rw-r--r-- | user_guide_src/source/database/configuration.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide_src/source/database/configuration.rst b/user_guide_src/source/database/configuration.rst index 074725664..521eb6010 100644 --- a/user_guide_src/source/database/configuration.rst +++ b/user_guide_src/source/database/configuration.rst @@ -182,7 +182,7 @@ Explanation of Values: applications where you might run manually written queries, and need the prefix to still be customizable by the end user. **autoinit** 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. + you will have to manually connect via the ``$this->db->db_connect()`` method. **schema** The database schema, defaults to 'public'. Used by PostgreSQL and ODBC drivers. **encrypt** Whether or not to use an encrypted connection. **compress** Whether or not to use client compression (MySQL only). |