数据库错误: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 tid LIMIT 1' at line 1SELECT tid,classname,enclassname,litpic,blitpic,keywords,description,t_content,htmldir,htmlfile,mrank,msubmit FROM ws_classtype WHERE tid= ORDER BY tid LIMIT 1

80.      
81.      public function errorMessage()
82.      {
83.          
84.          $msg $this->pdo->errorInfo();
85.          if($msg[2]) syError('数据库错误:' $msg[2] . end($this->arrSql));
86.          //echo "未知错误!";exit;
87.      }
88.  }
89. 
36.          $this->arrSql[] = $sql;
37.          $this->Statement $this->pdo->query($sql);
38.          if ($this->Statement) {
39.              return $this;
40.              //return $this->Statement->execute();
41.          }else $this->errorMessage();
42.      }
43.      
44.      public function exec($sql)
45.      {
46.          $this->arrSql[] = $sql;
4.      public $pdo;
5.      public $arrSql;
6.      public $Statement;
7.      public function getArray($sql)
8.      {
9.          if(!$result $this->query($sql))return array();
10.          if(!$this->Statement->rowCount())return array();
11.          $rows = array();
12.          while($rows[] = $this->Statement->fetch(PDO::FETCH_ASSOC)){}
13.          $this->Statement=null;
14.          array_pop($rows);
50.          }else{
51.              $sort "ORDER BY {$this->pk}";
52.          }
53.          $sql "SELECT {$fields} FROM {$this->tbl_name} {$where} {$sort}";
54.          if(null != $limit)$sql $this->_db->setlimit($sql$limit);
55.          return $this->_db->getArray($sql);
56.      }
57. 
58.      public function escape($value)
59.      {
60.          return $this->_db->__val_escape($value);
22.          if ($this->_db->showtables($value)==0){return TRUE;}else{return FALSE;}
23.      }
24.      
25.      public function find($conditions null$sort null$fields null)
26.      {
27.          if( $record $this->findAll($conditions$sort$fields1) ){
28.              return array_pop($record);
29.          }else{
30.              return FALSE;
31.          }
32.      }
248. 
249.              $this->type=syDB('classtype')->find(" molds='article' and tid=".$tid." ");
250. 
251.          }
252. 
253.   $this->ptype=syDB('classtype')->find(" tid=".$this->type['pid']." ",null,'tid,classname,enclassname,litpic,blitpic,keywords,description,t_content,htmldir,htmlfile,mrank,msubmit');
254. 
255.          //if(!$this->type){message("指定栏目不存在");}
256.           // $ip=GetIP();
257.           //  if($ip=='61.52.19.213'){
258.            //     dump($this->type);
26. 
27.          exit;
28. 
29.      }
30. 
31.      $handle_controller->$__action();
32. 
33.      if(FALSE != $GLOBALS['G_DY']['view']['auto_display']){
34. 
35.          $__tplname $__controller.$GLOBALS['G_DY']['view']['auto_display_sep'].
36. 
1.  <?php
2.  require("config.php");
3.  $WSConfig['view']['config']['template_dir'] = APP_PATH.'/template/'.$WSConfig['ext']['view_themes'];
4.  require(WS_PATH."/sys.php");
5.  spRun();