buildSelect() protected method

protected buildSelect ( )
コード例 #1
0
ファイル: sqlmysql.php プロジェクト: zblogcn/zblogphp
 /**
  * @override
  */
 protected function buildSelect()
 {
     if (isset($this->option['sql_no_cache'])) {
         $this->_sqlPush('SQL_NO_CACHE ');
     }
     if (isset($this->option['sql_cache'])) {
         $this->_sqlPush('SQL_CACHE ');
     }
     if (isset($this->option['sql_buffer_result'])) {
         $this->_sqlPush('SQL_BUFFER_RESULT ');
     }
     parent::buildSelect();
 }