CI Framework Connection database resource cannot be freed

Source: Internet
Author: User
Tags pconnect

Query data using the classes provided by the CI framework:

$this->load->database ();
$query = $this->db->query ($sql);

After the program runs for a period of time, error, inform the database too many connections

It is obvious that the MySQL database connection resource exceeds the Max_connections setting. Immediately after each query, add the resource release script:


$this->db->close ();

Still unable to release resources, how to do? After viewing the manual, you know, just set the Pconnect to False, the settings are as follows:

$db [' Default '] [' pconnect '] = FALSE;

After setting, no call $this->db->close (); To automatically close the connection.


CI Framework Connection database resource cannot be freed

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.