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_answers`
WHERE scale_id=0 AND qid='38' AND language='en'
ORDER BY `sortorder`, `code`

/install_path/limesurvey-build130305/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

#1
+
 /install_path/limesurvey-build130305/application/models/Answers.php(201): CDbCommand->query()
196         $command=Yii::app()->db->createCommand()->select('*')->from($this->tableName())->where($condition);
197         if ($order != FALSE)
198         {
199             $command->order($order);
200         }
201         return $command->query();
202     }
203 
204     public function getQuestionsForStatistics($fields, $condition, $orderby)
205     {
206         return Yii::app()->db->createCommand()
#2
+
 /install_path/limesurvey-build130305/application/controllers/admin/printablesurvey.php(1308): Answers->getAllRecords(" scale_id=0 AND qid='38' AND language='en'", array("sortorder", "code"))
1303                                 $mearesult=Questions::model()->getAllRecords(" parent_qid='{$deqrow['qid']}'  AND language='{$surveyprintlang}' ", array('question_order'));
1304 
1305                                 $question['QUESTION_TYPE_HELP'] .= $clang->gT("Please choose the appropriate response for each item:");
1306                                 $question['QUESTION_TYPE_HELP'] .= self::_array_filter_help($qidattributes, $surveyprintlang, $surveyid);
1307 
1308                                 $fresult=Answers::model()->getAllRecords(" scale_id=0 AND qid='{$deqrow['qid']}'  AND language='{$surveyprintlang}'", array('sortorder','code'));
1309                                 $fresult = $fresult->readAll(); 
1310                                 $fcount = count($fresult);
1311                                 $fwidth = "120";
1312                                 $i=1;
1313                                 $column_headings = array();
#5
+
 /install_path/limesurvey-build130305/application/core/Survey_Common_Action.php(100): CAction->runWithParamsInternal(printablesurvey, ReflectionMethod, array("surveyid" => "654567", "sa" => "index", "iSurveyId" => "654567", "iSurveyID" => "654567"))
095             $oMethod = new ReflectionMethod($this, $sDefault);
096         }
097 
098         // We're all good to go, let's execute it
099         // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params
100         return parent::runWithParamsInternal($this, $oMethod, $params);
101     }
102 
103     /**
104     * Some functions have different parameters, which are just an alias of the
105     * usual parameters we're getting in the url. This function just populates
2013-03-05 19:00:05 Apache/2.2.3 (Red Hat) Yii Framework/1.1.10