本文整理匯總了PHP中CModel::query方法的典型用法代碼示例。如果您正苦於以下問題:PHP CModel::query方法的具體用法?PHP CModel::query怎麽用?PHP CModel::query使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CModel
的用法示例。
在下文中一共展示了CModel::query方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: run
private function run($sql = NULL)
{
$_dbName = $this->_dbName;
$_tableName = $this->_tableName;
//分庫預留
if (method_exists($this, 'getRealDbName')) {
$_dbName = $this->getRealDbName($this);
}
//分表預留
if (method_exists($this, 'getRealTableName')) {
$_tableName = $this->getRealTableName($this);
}
$_DT_ = "`{$_dbName}`.`{$_tableName}`";
//自動建庫建庫表
$this->autoCreateDb($_dbName);
$this->autoCreateTable($_DT_, $this->_fields);
$aOption = array('select' => $this->_select, 'groupby' => $this->_groupby, 'limit' => $this->_limit, 'orderby' => $this->_orderby);
//執行方法
switch ($this->_operator) {
case 'find':
$res = parent::find($_DT_, $this->_where, $aOption);
break;
case 'findall':
$res = parent::findAll($_DT_, $this->_where, $aOption);
break;
case 'insert':
$res = parent::insert($_DT_, $this->_data);
break;
case 'delete':
$res = parent::delete($_DT_, $this->_where, $aOption);
break;
case 'update':
$res = parent::update($_DT_, $this->_data, $this->_where, $aOption);
break;
case 'execute':
$res = parent::execute($sql);
break;
case 'query':
$res = parent::query($sql);
break;
case 'count':
$res = parent::count($_DT_, $this->_where, $aOption);
break;
case 'mapping':
$res = parent::find($_DT_, $this->_where, $aOption);
break;
}
return $res;
}