當前位置: 首頁>>代碼示例>>PHP>>正文


PHP DibiConnection::getAffectedRows方法代碼示例

本文整理匯總了PHP中DibiConnection::getAffectedRows方法的典型用法代碼示例。如果您正苦於以下問題:PHP DibiConnection::getAffectedRows方法的具體用法?PHP DibiConnection::getAffectedRows怎麽用?PHP DibiConnection::getAffectedRows使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在DibiConnection的用法示例。


在下文中一共展示了DibiConnection::getAffectedRows方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: createUpdateOne

 public function createUpdateOne($table, $primaryColumn, $primaryValue, array $values)
 {
     $type = is_object($primaryValue) ? get_class($primaryValue) : gettype($primaryValue);
     $query = new Query($this->connection->update($table, $values));
     $query->fluent->where("%n = " . $query->getModificators()[$type], $primaryColumn, $primaryValue);
     $query->resultCallback = function (Query $query) {
         $query->fluent->execute();
         return $this->connection->getAffectedRows() === 0 ? false : true;
     };
     return $query;
 }
開發者ID:bauer01,項目名稱:unimapper-dibi,代碼行數:11,代碼來源:Adapter.php

示例2: execute

 /**
  * Generates and executes SQL query.
  * @param  mixed what to return?
  * @return DibiResult|int  result set object (if any)
  * @throws DibiException
  */
 public function execute($return = NULL)
 {
     $res = $this->query($this->_export());
     switch ($return) {
         case dibi::IDENTIFIER:
             return $this->connection->getInsertId();
         case dibi::AFFECTED_ROWS:
             return $this->connection->getAffectedRows();
         default:
             return $res;
     }
 }
開發者ID:ludik1,項目名稱:transport_company,代碼行數:18,代碼來源:DibiFluent.php

示例3: deleteBetweenField

 public function deleteBetweenField($field, $left, $right)
 {
     $sql = 'DELETE FROM %n WHERE %n BETWEEN %i AND %i';
     $this->dibi->query($sql, $this->table_name, $field, $left, $right);
     return $this->dibi->getAffectedRows();
 }
開發者ID:kramapet,項目名稱:nested-set,代碼行數:6,代碼來源:DibiQueryMapper.php

示例4: delete

 /**
  * @param int $id
  * @return bool
  */
 public function delete($id)
 {
     $this->database->delete(self::TABLE)->where(self::TABLE . '.id = %i', $id)->execute();
     return $this->database->getAffectedRows() == 1;
 }
開發者ID:josiff,項目名稱:fri-sandbox,代碼行數:9,代碼來源:ArticleModel.php

示例5: invalidateToken

 /**
  * @inheritDoc
  */
 function invalidateToken($token)
 {
     $this->dbConnection->query('DELETE FROM %n', $this->tableName, 'WHERE [token] = %s', $token);
     return $this->dbConnection->getAffectedRows() > 0;
 }
開發者ID:vbuilder,項目名稱:framework,代碼行數:8,代碼來源:DatabaseTokenManager.php


注:本文中的DibiConnection::getAffectedRows方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。