Skip to content

Commit 927a829

Browse files
committed
docs: add user guide
1 parent 41a48ec commit 927a829

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

user_guide_src/source/changelogs/v4.5.0.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ Forge
7272
Others
7373
------
7474

75+
- Added support for database names containing dots (``.``).
76+
7577
Model
7678
=====
7779

user_guide_src/source/database/configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ Explanation of Values
149149
**password** The password used to connect to the database. (``SQLite3`` does not use this.)
150150
**database** The name of the database you want to connect to.
151151

152-
.. note:: CodeIgniter doesn't support dots (``.``) in the database, table, and column names.
152+
.. note:: CodeIgniter doesn't support dots (``.``) in the table and column names.
153153
**DBDriver** The database driver name. The case must match the driver name.
154154
You can set a fully qualified classname to use your custom driver.
155155
Supported drivers: ``MySQLi``, ``Postgre``, ``SQLite3``, ``SQLSRV``, and ``OCI8``.

user_guide_src/source/database/examples.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The following page contains example code showing how the database class
66
is used. For complete details please read the individual pages
77
describing each function.
88

9-
.. note:: CodeIgniter doesn't support dots (``.``) in the database, table, and column names.
9+
.. note:: CodeIgniter doesn't support dots (``.``) in the table and column names.
1010

1111
.. contents::
1212
:local:

user_guide_src/source/database/queries.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Queries
1010
Query Basics
1111
************
1212

13-
.. note:: CodeIgniter doesn't support dots (``.``) in the database, table, and column names.
13+
.. note:: CodeIgniter doesn't support dots (``.``) in the table and column names.
1414

1515
Regular Queries
1616
===============

user_guide_src/source/database/query_builder.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ the query syntax is generated by each database adapter. It also allows
1515
for safer queries, since the values are escaped automatically by the
1616
system.
1717

18-
.. note:: CodeIgniter doesn't support dots (``.``) in the database, table, and column names.
18+
.. note:: CodeIgniter doesn't support dots (``.``) in the table and column names.
1919

2020
.. contents::
2121
:local:

0 commit comments

Comments
 (0)