CDbException

CDbCommand failed to execute the SQL statement: SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbuffered queries are active. Consider using PDOStatement::fetchAll(). Alternatively, if your code is only ever going to run against mysql, you may enable query buffering by setting the PDO::MYSQL_ATTR_USE_BUFFERED_QUERY attribute.. The SQL statement executed was: SELECT * FROM `lime_surveys` `t`

/var/www/html/limesurvey/framework/db/CDbCommand.php(528)

516             return $result;
517         }
518         catch(Exception $e)
519         {
520             if($this->_connection->enableProfiling)
521                 Yii::endProfile('system.db.CDbCommand.query('.$this->getText().$par.')','system.db.CDbCommand.query');
522             $errorInfo = $e instanceof PDOException ? $e->errorInfo : null;
523             $message = $e->getMessage();
524             Yii::log(Yii::t('yii','CDbCommand::{method}() failed: {error}. The SQL statement executed was: {sql}.',
525                 array('{method}'=>$method, '{error}'=>$message, '{sql}'=>$this->getText().$par)),CLogger::LEVEL_ERROR,'system.db.CDbCommand');
526             if(YII_DEBUG)
527                 $message .= '. The SQL statement executed was: '.$this->getText().$par;
528             throw new CDbException(Yii::t('yii','CDbCommand failed to execute the SQL statement: {error}',
529                 array('{error}'=>$message)),(int)$e->getCode(),$errorInfo);
530         }
531     }
532 
533     /**
534      * Builds a SQL SELECT statement from the given query specification.
535      * @param array $query the query specification in name-value pairs. The following
536      * query options are supported: {@link select}, {@link distinct}, {@link from},
537      * {@link where}, {@link join}, {@link group}, {@link having}, {@link order},
538      * {@link limit}, {@link offset} and {@link union}.
539      * @return string the SQL statement
540      * @since 1.1.6

Stack Trace

#3
+
 /var/www/html/limesurvey/application/controllers/admin/checkintegrity.php(642): CActiveRecord->findAll()
637             $aFullOldSIDs[$iSurveyID][] = $sTable;
638         }
639         $aOldSIDs = array_unique($aOldSIDs);
640         $sQuery = 'SELECT sid FROM {{surveys}} ORDER BY sid';
641         $oResult = dbExecuteAssoc($sQuery) or safeDie('Couldn\'t get unique survey ids');
642         $surveys = Survey::model()->findAll();
643         if (Survey::model()->hasErrors()) safeDie(Survey::model()->getError());
644         $aSIDs = array();
645         foreach ($surveys as $survey)
646         {
647             $aSIDs[] = $survey['sid'];
#4
+
 /var/www/html/limesurvey/application/controllers/admin/checkintegrity.php(39): CheckIntegrity->_checkintegrity()
34         Yii::app()->loadHelper('database');
35     }
36 
37     public function index()
38     {
39         $aData = $this->_checkintegrity();
40         $this->_renderWrappedTemplate('checkintegrity', 'check_view', $aData);
41     }
42 
43     public function fixredundancy()
44     {
#7
+
 /var/www/html/limesurvey/application/core/Survey_Common_Action.php(82): CAction->runWithParamsInternal(CheckIntegrity, ReflectionMethod, array())
77             $oMethod = new ReflectionMethod($this, $sDefault);
78         }
79 
80         // We're all good to go, let's execute it
81         // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params
82         return parent::runWithParamsInternal($this, $oMethod, $params);
83     }
84 
85     /**
86     * Some functions have different parameters, which are just an alias of the
87     * usual parameters we're getting in the url. This function just populates
2012-11-26 20:15:28 Apache/2.2.3 (Red Hat) DAV/2 PHP/5.1.6 Yii Framework/1.1.10