DESCRIBE ps_molds
执行错误: Got error 28 from storage engine

34.          $this->arrSql[] = $sql;
35.          if( $result mysql_query($sql$this->conn) ){
36.              return $result;
37.          }else{
38.              if(mysql_error()!=''){
39.                  syError("{$sql}<br />执行错误: " mysql_error());
40.              }else{
41.                  return TRUE;
42.              }
43.          }
44.      }
3.  class db_mysql {
4.      public $conn;
5.      public $arrSql;
6.      public function getArray($sql)
7.      {
8.          if( ! $result $this->exec($sql) )return array();
9.          if( ! mysql_num_rows($result) )return array();
10.          $rows = array();
11.          while($rows[] = mysql_fetch_array($result,MYSQL_ASSOC)){}
12.          mysql_free_result($result);
13.          array_pop($rows);
48.          return mysql_affected_rows($this->conn);
49.      }
50. 
51.      public function getTable($tbl_name)
52.      {
53.          return $this->getArray("DESCRIBE {$tbl_name}");
54.      }
55. 
56.      public function __construct($dbConfig)
57.      {
58.          $linkfunction = ( TRUE == $dbConfig['persistent'] ) ? 'mysql_pconnect' 'mysql_connect';
205. 
206.  function syDB($tbl_name$pk null){
207.      $modelObj syClass("syModel");
208.      $modelObj->tbl_name = (TRUE == $GLOBALS['G_DY']["db_spdb_full_tblname"]) ? $tbl_name :    $GLOBALS['G_DY']['db']['prefix'] . $tbl_name;
209.      if( !$pk ){
210.          @list($pk) = $modelObj->_db->getTable($modelObj->tbl_name);$pk $pk['Field'];
211.      }
212.      $modelObj->pk $pk;
213.      return $modelObj;
214.  }
215. 
453.      $c=syDB('custom')->find(array('file' => $file));
454.      return $c;
455.  }
456.  //频道信息获取
457.  function moldsinfo($molds,$q){
458.      $m=syDB('molds')->find(array('molds' => $molds),null,$q);
459.      return $m[$q];
460.  }
461.  //内容信息获取
462.  function contentinfo($molds,$id,$q){
463.      $c=syDB($molds)->find(array('id' => $id),null,$q);
3.  class article extends syController
4.  {
5.      function __construct(){
6.          parent::__construct();
7.          $this->molds 'article';
8.          $this->moldname=moldsinfo('article','moldname');
9.          $this->sy_class_type=syClass('syclasstype');
10.          $this->Class=syClass('c_article');
11.          $this->db=$GLOBALS['G_DY']['db']['prefix'].'article';
12.                      
13.      }
90.          }
91.      }
92.      if(FALSE != $has_define){
93.          $argString '';$comma ''
94.          if(null != $args)for ($i 0$i count($args); $i ++) { $argString .= $comma "\$args[$i]"$comma ', ';}
95.          eval("\$GLOBALS['G_DY']['inst_class'][\$class_name]= new \$class_name($argString);"); 
96.          return $GLOBALS['G_DY']["inst_class"][$class_name];
97.      }
98.      syError($class_name."类定义不存在,请检查。");
99.  }
100.  function curl_get($url) {
6.          syError('route Error');
7.          exit;
8.      }
9.      syClass('sysession');
10.      spLaunch("router_prefilter");
11.      $handle_controller syClass($__controllernull$GLOBALS['G_DY']["controller_path"].'/'.$__controller.".php");
12.      if(!is_object($handle_controller) || !method_exists($handle_controller$__action)){
13.          syError('route Error');
14.          exit;
15.      }
16.      $handle_controller->$__action();
3.  require("config.php");//载入配置文件
4.  $doyoConfig['view']['config']['template_dir'] = APP_PATH.'/template/'.$doyoConfig['ext']['view_themes'];//配置默认主题
5. 
6.  require(DOYO_PATH."/sys.php");//载入系统启动文件
7. 
8.  spRun();//程序启动