CDbException

CDbCommand failed to execute the SQL statement: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'z.cid' in 'field list'. The SQL statement executed was: select z.id as zcID,z.cid,z.`createTime`, z.`status`, z.`hot`, z.`fee`, z.`type`, z.`fromcity`, z.`tocity`, z.`desc`,c.* from yh_zuche as z JOIN yh_car as c where c.id = z.cid and z.status = 1 and z.type=1 limit 0,4

/var/www/html/car/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

#1
+
 /var/www/html/car/class/models/CCModel.php(105): CDbCommand->queryAll()
100         {
101             $sql .= " where $whereSql ";
102         }
103         $connection = Yii::app()->db;
104         $command = $connection->createCommand($sql);
105         return $command->queryAll();         
106     }
107     
108     public function queryAddSql($sql = ''){
109         $connection = Yii::app()->db;
110         $command = $connection->createCommand($sql);
#2
+
 /var/www/html/car/class/controllers/IndexController.php(54): CCModel->querySql(" select z.id as zcID,z.cid,z.`createTime`, z.`status`, z.`hot`, ...")
49         
50         /**
51         *汽车读取
52         */
53         $carsql1 = " select z.id as zcID,z.cid,z.`createTime`, z.`status`, z.`hot`, z.`fee`, z.`type`, z.`fromcity`, z.`tocity`, z.`desc`,c.* from yh_zuche as z JOIN yh_car as c where c.id = z.cid and z.status = 1 and z.type=1 limit 0,4";
54         $zc_car  = $zuche->querySql($carsql1);
55         $this->assign('zc_car', $zc_car);
56         
57         $carsql2 = " select z.*,c.* from yh_hunqing as z JOIN yh_car as c where c.id = z.cid and z.status = 1  limit 0,4";
58         $hq_car  = $hunqing->querySql($carsql2);
59         $this->assign('hq_car', $hq_car);
#10
+
 /var/www/html/car/index.php(17): CApplication->run()
12 $app     = Yii::createWebApplication($config);
13 
14 $app->getSession()->open();
15 $app->setControllerPath(WORK_ROOT.'class/controllers/');
16 
17 $app->run();
2024-03-29 05:22:25 Apache/2.2.15 (CentOS) Yii Framework/1.1.15