CDbException

CDbCommand không thể thi hành câu truy vấn SQL: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ORDER BY t.ord ASC' at line 1. The SQL statement executed was: SELECT * FROM `cat_news` `t` WHERE t.active = 1 AND parent = ORDER BY t.ord ASC

/home/myenglishedu/public_html/framework/db/CDbCommand.php(543)

531         {
532             if($this->_connection->enableProfiling)
533                 Yii::endProfile('system.db.CDbCommand.query('.$this->getText().$par.')','system.db.CDbCommand.query');
534 
535             $errorInfo=$e instanceof PDOException ? $e->errorInfo : null;
536             $message=$e->getMessage();
537             Yii::log(Yii::t('yii','CDbCommand::{method}() failed: {error}. The SQL statement executed was: {sql}.',
538                 array('{method}'=>$method, '{error}'=>$message, '{sql}'=>$this->getText().$par)),CLogger::LEVEL_ERROR,'system.db.CDbCommand');
539 
540             if(YII_DEBUG)
541                 $message.='. The SQL statement executed was: '.$this->getText().$par;
542 
543             throw new CDbException(Yii::t('yii','CDbCommand failed to execute the SQL statement: {error}',
544                 array('{error}'=>$message)),(int)$e->getCode(),$errorInfo);
545         }
546     }
547 
548     /**
549      * Builds a SQL SELECT statement from the given query specification.
550      * @param array $query the query specification in name-value pairs. The following
551      * query options are supported: {@link select}, {@link distinct}, {@link from},
552      * {@link where}, {@link join}, {@link group}, {@link having}, {@link order},
553      * {@link limit}, {@link offset} and {@link union}.
554      * @throws CDbException if "from" key is not present in given query parameter
555      * @return string the SQL statement

Stack Trace

#3
+
 /home/myenglishedu/public_html/protected/models/CatNews.php(206): CActiveRecord->findAll(array("condition" => "t.active = 1 AND parent = ", "order" => "t.ord ASC"))
201     public function getCatByParent($parent)
202     {
203         return CatNews::model()->findAll(array(
204             'condition' => 't.active = 1 AND parent = ' . $parent,
205             'order' => 't.ord ASC',
206         ));
207     }
208 
209     public function getSubCat()
210     {
211         return CatNews::model()->findAll(array(
#4
+
 /home/myenglishedu/public_html/protected/controllers/SiteController.php(396): CatNews->getCatByParent(null)
391 //        if( $this->page_url != $kt[0])
392 //            $this->redirect( $this->page_url.$chuoinoi, 'location', 301 );
393 
394         $arr_cat = array();
395         $arr_cat[]=$cat->id;
396         $subcat = CatNews::getCatByParent($cat->id);
397         if (!empty($subcat)) {
398             foreach ($subcat as $row) {
399                 $arr_cat[]=$row->id;
400             }
401         }
#14
+
 /home/myenglishedu/public_html/index.php(12): CApplication->run()
07 defined('YII_DEBUG') or define('YII_DEBUG',true);
08 // specify how many levels of call stack should be shown in each log message
09 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
10 error_reporting( E_ERROR | E_PARSE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING );
11 require_once($yii);
12 Yii::createWebApplication($config)->run();
2024-03-28 14:29:43 Apache Yii Framework/1.1.16