溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么在Yii框架中自定義一個數(shù)據(jù)庫操作組件

發(fā)布時間:2021-04-13 16:12:10 來源:億速云 閱讀:160 作者:Leah 欄目:開發(fā)技術(shù)

怎么在Yii框架中自定義一個數(shù)據(jù)庫操作組件?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

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ù)庫操作類了。 因為,不知道怎么去獲得php pdo 的原生操作對象,所以這里是對Yii數(shù)據(jù)庫操作類的一個二次封裝。

接口文件 DbOper.php 自定義的數(shù)據(jù)庫操作類都得實現(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 時更改該表所有的行
   * 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 接口的實現(xiàn)類 DbRealization1.php

<?php
namespace app\components\DbOper\realization;
use Yii;
use app\components\DbOper\DbOper;
/**
 * 自定義數(shù)據(jù)庫操作組件實現(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;
  }
}

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI