TDbException

Description

TDbConnection failed to establish DB connection: SQLSTATE[08004] [1040] Too many connections

Source File

/var/www/clients/client1/web4/web/prado/framework/Data/TDbConnection.php (192)

0181:                 $this->_pdo=new PDO($this->getConnectionString(),$this->getUsername(),
0182:                                     $this->getPassword(),$this->_attributes);
0183:                 // This attribute is only useful for PDO::MySql driver.
0184:                 // Ignore the warning if a driver doesn't understand this.
0185:                 @$this->_pdo->setAttribute(PDO::ATTR_EMULATE_PREPARES, true);
0186:                 $this->_pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
0187:                 $this->_active=true;
0188:                 $this->setConnectionCharset();
0189:             }
0190:             catch(PDOException $e)
0191:             {
0192: throw new TDbException('dbconnection_open_failed',$e->getMessage());
0193: } 0194: } 0195: } 0196: 0197: /** 0198: * Closes the currently active DB connection. 0199: * It does nothing if the connection is already closed. 0200: */ 0201: protected function close() 0202: { 0203: $this->_pdo=null; 0204: $this->_active=false;

Stack Trace

#0 /var/www/clients/client1/web4/web/prado/framework/Data/TDbConnection.php(165): TDbConnection->open()
#1 /var/www/clients/client1/web4/web/prado/framework/Util/TLogRouter.php(831): TDbConnection->setActive(true)
#2 /var/www/clients/client1/web4/web/prado/framework/Util/TLogRouter.php(94): TDbLogRoute->init(Object(TXmlElement))
#3 /var/www/clients/client1/web4/web/prado/framework/Util/TLogRouter.php(72): TLogRouter->loadConfig(Object(TXmlElement))
#4 /var/www/clients/client1/web4/web/prado/framework/TApplication.php(909): TLogRouter->init(Object(TXmlElement))
#5 /var/www/clients/client1/web4/web/prado/framework/TApplication.php(956): TApplication->applyConfiguration(Object(TApplicationConfiguration), false)
#6 /var/www/clients/client1/web4/web/prado/framework/TApplication.php(370): TApplication->initApplication()
#7 /var/www/clients/client1/web4/web/index.php(27): TApplication->run()
#8 {main}
2025-04-03 14:00 Apache PRADO/3.1.7