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 count(*) as recordcount FROM lime_conditions WHERE lime_conditions.qid=:qid AND lime_conditions.scenario=:scenario AND lime_conditions.cfieldname LIKE '{%'

/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

#1
+
 /var/www/html/limesurvey/application/controllers/admin/conditionsaction.php(1297): CDbCommand->queryRow()
1292                     ."AND {{conditions}}.scenario=:scenario "
1293                     ."AND {{conditions}}.cfieldname LIKE '{%' "; // only catching SRCtokenAttr conditions
1294                     $resulttoken = Yii::app()->db->createCommand($querytoken)
1295                     ->bindValue(":scenario", $scenarionr['scenario'], PDO::PARAM_INT)
1296                     ->bindValue(":qid", $qid, PDO::PARAM_INT)
1297                     ->queryRow() or safeDie ("Couldn't get other conditions for question $qid<br />$query<br />");
1298                     $conditionscounttoken=(int)$resulttoken['recordcount'];
1299 
1300                     $querytoken = "SELECT {{conditions}}.cid, "
1301                     ."{{conditions}}.scenario, "
1302                     ."{{conditions}}.cqid, "
#4
+
 /var/www/html/limesurvey/application/core/Survey_Common_Action.php(100): CAction->runWithParamsInternal(conditionsaction, ReflectionMethod, array("subaction" => "editconditionsform", "surveyid" => "61796", "gid" => "518", "qid" => "3950", ...))
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
#8
+
 /var/www/html/limesurvey/application/controllers/AdminController.php(169): CController->run("conditions")
164                     $this->redirect($this->createUrl('/admin/authentication/sa/login'));
165                 }
166                 
167             }
168 
169             return parent::run($action);
170     }
171 
172     /**
173     * Routes all the actions to their respective places
174     *
2013-05-13 10:10:51 Apache/2.2.3 (Red Hat) Yii Framework/1.1.10