@@ -118,8 +118,9 @@ Explanation of Values:
118118**database ** The name of the database you want to connect to.
119119
120120 .. 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.
122122 You can set a fully qualified classname to use your custom driver.
123+ Supported drivers: ``MySQLi ``, ``Postgre ``, ``SQLite3 ``, ``SQLSRV ``, and ``OCI8 ``.
123124**DBPrefix ** An optional table prefix which will added to the table name when running
124125 :doc: `Query Builder <query_builder >` queries. This permits multiple CodeIgniter
125126 installations to share one database.
@@ -130,7 +131,7 @@ Explanation of Values:
130131**swapPre ** A default table prefix that should be swapped with ``DBPrefix ``. This is useful for distributed
131132 applications where you might run manually written queries, and need the prefix to still be
132133 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 ``.)
134135**encrypt ** Whether or not to use an encrypted connection.
135136 ``SQLSRV `` driver accepts true/false
136137 ``MySQLi `` driver accepts an array with the following options:
@@ -152,7 +153,7 @@ Explanation of Values:
152153**busyTimeout ** milliseconds (int) - Sleeps for a specified amount of time when a table is locked (``SQLite3 `` only).
153154=============== ===========================================================================================================
154155
155- .. note :: Depending on what database driver you are using (``MySQLi``, ``Postgres ``,
156+ .. note :: Depending on what database driver you are using (``MySQLi``, ``Postgre ``,
156157 etc.) not all values will be needed. For example, when using ``SQLite3 `` you
157158 will not need to supply a username or password, and the database name
158159 will be the path to your database file.
0 commit comments