Skip to content

Commit c4be77e

Browse files
committed
docs: add note of dots in database/table/column names
1 parent abcde67 commit c4be77e

4 files changed

Lines changed: 8 additions & 0 deletions

File tree

user_guide_src/source/database/configuration.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,8 @@ Explanation of Values:
113113
**username** The username used to connect to the database.
114114
**password** The password used to connect to the database.
115115
**database** The name of the database you want to connect to.
116+
117+
.. note:: CodeIgniter doesn't support dots (``.``) in the database, table, and column names.
116118
**DBDriver** The database type. e.g.,: ``MySQLi``, ``Postgres``, etc. The case must match the driver name
117119
**DBPrefix** An optional table prefix which will added to the table name when running
118120
:doc:`Query Builder <query_builder>` queries. This permits multiple CodeIgniter

user_guide_src/source/database/examples.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ 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.
10+
911
.. contents::
1012
:local:
1113
:depth: 2

user_guide_src/source/database/queries.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Queries
1010
Query Basics
1111
************
1212

13+
.. note:: CodeIgniter doesn't support dots (``.``) in the database, table, and column names.
14+
1315
Regular Queries
1416
===============
1517

user_guide_src/source/database/query_builder.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ 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.
19+
1820
.. contents::
1921
:local:
2022
:depth: 2

0 commit comments

Comments
 (0)