@@ -118,8 +118,9 @@ Explanation of Values:
118
118
**database ** The name of the database you want to connect to.
119
119
120
120
.. note:: CodeIgniter doesn't support dots (``.``) in the database, table, and column names.
121
- **DBDriver ** The database driver name. e.g.,: `` MySQLi ``, `` Postgres ``, etc. The case must match the driver name.
121
+ **DBDriver ** The database driver name. The case must match the driver name.
122
122
You can set a fully qualified classname to use your custom driver.
123
+ Supported drivers: ``MySQLi ``, ``Postgre ``, ``SQLite3 ``, ``SQLSRV ``, and ``OCI8 ``.
123
124
**DBPrefix ** An optional table prefix which will added to the table name when running
124
125
:doc: `Query Builder <query_builder >` queries. This permits multiple CodeIgniter
125
126
installations to share one database.
@@ -130,7 +131,7 @@ Explanation of Values:
130
131
**swapPre ** A default table prefix that should be swapped with ``DBPrefix ``. This is useful for distributed
131
132
applications where you might run manually written queries, and need the prefix to still be
132
133
customizable by the end user.
133
- **schema ** The database schema, default value varies by driver. (Used by ``Postgres `` and ``SQLSRV ``.)
134
+ **schema ** The database schema, default value varies by driver. (Used by ``Postgre `` and ``SQLSRV ``.)
134
135
**encrypt ** Whether or not to use an encrypted connection.
135
136
``SQLSRV `` driver accepts true/false
136
137
``MySQLi `` driver accepts an array with the following options:
@@ -152,7 +153,7 @@ Explanation of Values:
152
153
**busyTimeout ** milliseconds (int) - Sleeps for a specified amount of time when a table is locked (``SQLite3 `` only).
153
154
=============== ===========================================================================================================
154
155
155
- .. note :: Depending on what database driver you are using (``MySQLi``, ``Postgres ``,
156
+ .. note :: Depending on what database driver you are using (``MySQLi``, ``Postgre ``,
156
157
etc.) not all values will be needed. For example, when using ``SQLite3 `` you
157
158
will not need to supply a username or password, and the database name
158
159
will be the path to your database file.
0 commit comments