diff options
author | Derek Allard <derek.allard@ellislab.com> | 2010-01-17 08:07:13 +0100 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2010-01-17 08:07:13 +0100 |
commit | 04eb070b87da9ffa40e48ef3660e664b48760c97 (patch) | |
tree | b3b051f3265a6e320133ddb39c30608c7992999d /user_guide/database | |
parent | 1ca94e82c8fc8c2acf4bb7b3927abff736779163 (diff) |
Documentd db->close()
Diffstat (limited to 'user_guide/database')
-rw-r--r-- | user_guide/database/connecting.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/user_guide/database/connecting.html b/user_guide/database/connecting.html index fb766288e..217a23570 100644 --- a/user_guide/database/connecting.html +++ b/user_guide/database/connecting.html @@ -164,9 +164,11 @@ you can pass the connection values as indicated above).</p> <code>$this->db->reconnect();</code> +<h2>Manually closing the Connection</h2> - +<p>While CodeIgniter intelligently takes care of closing your database connections, you can explicitly close the connection.</p> +<code>$this->db->close();</code> </div> <!-- END CONTENT --> |