本文實(shí)例講述了Yii框架自定義數(shù)據(jù)庫操作組件。分享給大家供大家參考,具體如下:
Yii 的數(shù)據(jù)庫操作對象提供的方法確實(shí)很方便。 但是有的時(shí)候我們已經(jīng)習(xí)慣了我們以前編寫php的數(shù)據(jù)庫操作語法,沒有那么多時(shí)間去仔細(xì)看每個(gè)Yii提供的數(shù)據(jù)庫操作語法,怎么辦呢? 那就是一邊學(xué)習(xí),一邊二次封裝自己習(xí)慣的數(shù)據(jù)庫操作類。 以后我們使用數(shù)據(jù)庫操作對象,就用我們自己定義的組件去操作。
將我的數(shù)據(jù)庫操作組件注冊進(jìn)配置文件web.php 中
array(
'components' => array(
//自定義數(shù)據(jù)庫操作組件
'dbOper' => array(
'class' => 'app\components\DbOper\realization\DbRealization1'
),
//Yii 框架數(shù)據(jù)庫連接組件
'db' => array(
'class' => 'yii\db\Connection',
'dsn' => 'mysql:host=localhost;dbname=yii',
'username' => 'root',
'password' => '123456',
'charset' => 'utf8'
);
)
)
然后我們就可以在components 目錄下定義我們的數(shù)據(jù)庫操作類了。 因?yàn)?,不知道怎么去獲得php pdo 的原生操作對象,所以這里是對Yii數(shù)據(jù)庫操作類的一個(gè)二次封裝。
接口文件 DbOper.php 自定義的數(shù)據(jù)庫操作類都得實(shí)現(xiàn)該接口
?php
namespace app\components\DbOper;
/**
* 自定義數(shù)據(jù)庫操作組件 依賴系統(tǒng)定義組件db
*/
interface DbOper
{
/**
* 查詢多條數(shù)據(jù)
* @param
* String $sql 需要查詢的sql語句
* array $keyVal 字段映射
* @return
* array 查詢結(jié)果
*/
public function fetchAll($sql='',$keyVal=array());
/**
* 查詢一條數(shù)據(jù) 原生sql
* @param
* String $sql 需要查詢的sql語句
* array $keyVal 字段映射
* @return
* array 查詢結(jié)果
*/
public function fetch($sql='',$keyVal=array());
/**
* 添加數(shù)據(jù)
* @param
* String $tableName 表名
* array $values 要插入的數(shù)據(jù)
* @return
* int 受影響的行數(shù)
*/
public function insert($tableName='',$values=array());
/**
* 更新數(shù)據(jù)
* @param
* String $tableName 表名
* array | String $where 修改條件 為 1 時(shí)更改該表所有的行
* array $update 要更新的數(shù)據(jù)
* @return
* int 受影響的行數(shù)
*/
public function update($tableName='',$where='',$update=array());
/**
* 刪除數(shù)據(jù)
* @param
* String $tableName 表名
* array | String $where 刪除條件
* @return
* int 受影響的行數(shù)
*/
public function delete($tableName='',$where='');
/**
* 事務(wù)處理
* @param
* array $sqls 要執(zhí)行的sql集合
* return
* boolean 是否執(zhí)行成功
*/
public function transcation($sqls = array());
/**
* 獲得數(shù)據(jù)庫鏈接
*/
public function getYiiDbConnection();
}
針對DbOper 接口的實(shí)現(xiàn)類 DbRealization1.php
?php
namespace app\components\DbOper\realization;
use Yii;
use app\components\DbOper\DbOper;
/**
* 自定義數(shù)據(jù)庫操作組件實(shí)現(xiàn)類
*/
class DbRealization1 implements DbOper
{
private $db = null;
/**
* interface @Override
*/
public function fetchAll($sql='',$keyVal=array())
{
if($sql === '')
return array();
$result = $this->getQueryObj($sql,$keyVal)->queryAll();
if($result)
return $result;
else
return array();
}
/**
* interface @Override
*/
public function fetch($sql='',$keyVal=array())
{
if($sql === '')
return array();
$result = $this->getQueryObj($sql,$keyVal)->queryOne();
if($result)
return $result;
else
return array();
}
/**
* interface @Override
*/
public function insert($tableName='',$values=array())
{
if($tableName === '')
return 0;
$insert = $this->getYiiDbConnection()->createCommand();
if(is_array($values[0]))
{
$keys = array_keys($values[0]);
return $insert->batchInsert($tableName,$keys,$values)->execute();
}
return $insert->insert($tableName,$values)->execute();
}
/**
* interface @Override
*/
public function update($tableName='',$where = '',$update=array())
{
if($tableName === '')
return 0;
if($where === '')
return 0;
return $this->getYiiDbConnection()
->createCommand()
->update($tableName,$update,$where)
->execute();
}
/**
* interface @Override
*/
public function delete($tableName='',$where='')
{
if($tableName === '')
return 0;
return $this->getYiiDbConnection()
->createCommand()
->delete($tableName,$where)
->execute();
}
/**
* 獲得查詢操作對象
* @return
* Object
*/
private function getQueryObj($sql='',$keyVal=array())
{
$query = $this->getYiiDbConnection()->createCommand($sql);
if(!empty($keyVal))
$query->bindValues($keyVal);
return $query;
}
/**
* interface @Override
*/
public function transcation($sqls = array())
{
if(empty($sqls))
return false;
$db = $this->getYiiDbConnection();
$outerTransaction = $db->beginTransaction();
$runClient = true;
try
{
foreach($sqls as $sql)
{
$db->createCommand($sql)->execute();
}
$outerTransaction->commit();
}catch(\Exception $e){
$runClient = false;
$outerTransaction->rollback();
}
return $runClient;
}
/**
* interface @Override
*/
public function getYiiDbConnection()
{
if($this->db === null)
{
$this->db = Yii::$app->db;
}
return $this->db;
}
}
注意:我的自定義數(shù)據(jù)庫操作類 依賴 Yii::$app->db 這個(gè)組件, 也就是框架自帶的數(shù)據(jù)庫連接組件
然后我們就可以通過 Yii::$app->dbOper 去操作數(shù)據(jù)庫了。
更多關(guān)于Yii相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Yii框架入門及常用技巧總結(jié)》、《php優(yōu)秀開發(fā)框架總結(jié)》、《smarty模板入門基礎(chǔ)教程》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》
希望本文所述對大家基于Yii框架的PHP程序設(shè)計(jì)有所幫助。
您可能感興趣的文章:- Yii框架學(xué)習(xí)筆記之應(yīng)用組件操作示例
- yii2高級應(yīng)用之自定義組件實(shí)現(xiàn)全局使用圖片上傳功能的方法
- Yii框架組件和事件行為管理詳解
- Yii擴(kuò)展組件編寫方法實(shí)例分析
- yii2行為的方法如何注入到組件類中詳解
- Yii框架響應(yīng)組件用法實(shí)例分析
- Yii框架核心組件類實(shí)例詳解
- PHP的Yii框架中移除組件所綁定的行為的方法
- Yii2中組件的注冊與創(chuàng)建方法
- Yii框架組件的事件機(jī)制原理與用法分析
- Yii框架應(yīng)用組件用法實(shí)例分析