diff options
author | Jamie Rumbelow <jamie@jamierumbelow.net> | 2012-02-28 16:40:18 +0100 |
---|---|---|
committer | Jamie Rumbelow <jamie@jamierumbelow.net> | 2012-02-28 16:40:18 +0100 |
commit | 576b47e9947d4f5bc25a3f72e3978a3d7f9ca1de (patch) | |
tree | 286194a87e7388970e3e546fabb0690e0a349342 /user_guide_src/source/database/connecting.rst | |
parent | ae123e0b3d749a13d8820d0a6b773ca25b0ed380 (diff) | |
parent | 0aa8c60ae7eee0122c42ae17d42fd5471a575743 (diff) |
Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into develop
Diffstat (limited to 'user_guide_src/source/database/connecting.rst')
-rw-r--r-- | user_guide_src/source/database/connecting.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/user_guide_src/source/database/connecting.rst b/user_guide_src/source/database/connecting.rst index 4db038e1e..5822ca62c 100644 --- a/user_guide_src/source/database/connecting.rst +++ b/user_guide_src/source/database/connecting.rst @@ -122,6 +122,12 @@ return the database object. | $DB1->result(); | etc... +.. note:: You don't need to create separate database configurations if you + only need to use a different database on the same connection. You + can switch to a different database when you need to, like this: + + | $this->db->db_select($database2_name); + Reconnecting / Keeping the Connection Alive =========================================== |