Skip to content

Commit

Permalink
docs: add user guide
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Mar 27, 2024
1 parent 17e6ede commit c3fb210
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions user_guide_src/source/changelogs/v4.5.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ Forge
Others
------

- Added support for database names containing dots (``.``).

Model
=====

Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/database/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ Explanation of Values
**password** The password used to connect to the database. (``SQLite3`` does not use this.)
**database** The name of the database you want to connect to.

.. note:: CodeIgniter doesn't support dots (``.``) in the database, table, and column names.
.. note:: CodeIgniter doesn't support dots (``.``) in the table and column names.
**DBDriver** The database driver name. The case must match the driver name.
You can set a fully qualified classname to use your custom driver.
Supported drivers: ``MySQLi``, ``Postgre``, ``SQLite3``, ``SQLSRV``, and ``OCI8``.
Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/database/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The following page contains example code showing how the database class
is used. For complete details please read the individual pages
describing each function.

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

.. contents::
:local:
Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/database/queries.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Queries
Query Basics
************

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

Regular Queries
===============
Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/database/query_builder.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ the query syntax is generated by each database adapter. It also allows
for safer queries, since the values are escaped automatically by the
system.

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

.. contents::
:local:
Expand Down

0 comments on commit c3fb210

Please sign in to comment.