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


PHP DibiConnection::update方法代碼示例

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


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

示例1: save

 /**
  * @param array|\DibiRow $article
  * @return bool
  */
 public function save(&$article)
 {
     if (!isset($article['id'])) {
         $this->database->insert(self::TABLE, $article)->execute();
         $article['id'] = $this->database->getInsertId();
     } else {
         $this->database->update(self::TABLE, $article)->where(self::TABLE, '.id = %i', $article['id'])->execute();
     }
     return $this->database->getAffectedRows() == 1;
 }
開發者ID:josiff,項目名稱:fri-sandbox,代碼行數:14,代碼來源:ArticleModel.php

示例2: update

 public function update($user)
 {
     try {
         $this->database->update(self::TABLE_NAME, $user)->where(self::COLUMN_ID . " = ?", $user->id)->execute();
     } catch (Nette\Database\DriverException $e) {
         throw new \Nette\Database\DriverException();
     }
 }
開發者ID:bombush,項目名稱:NatsuCon,代碼行數:8,代碼來源:UserManager.php

示例3: 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

示例4: updateItem

 /**
  * @param object $instance
  * @param ClassMetadata $entityAttributes
  * @param string $originValueHash
  * @return bool
  */
 private function updateItem($instance, ClassMetadata $entityAttributes, $originValueHash)
 {
     if ($originValueHash == $this->getInstanceValuesHash($instance, $entityAttributes)) {
         return FALSE;
     }
     if ($entityAttributes->hasBeforeUpdateEvent()) {
         $instance->beforeUpdateEvent($this);
     }
     $values = $this->getInstanceValueMap($instance, $entityAttributes);
     return $this->dibiConnection->update($entityAttributes->getTable(), $values)->where($this->buildPrimaryKey($instance, $entityAttributes))->execute(\dibi::AFFECTED_ROWS) == 1;
 }
開發者ID:doublemcz,項目名稱:dibi-orm,代碼行數:17,代碼來源:Manager.php

示例5: update

 public function update($id, array $data)
 {
     return $this->connection->update($this->table, $data)->where('id=%i', $id)->execute();
 }
開發者ID:vrana,項目名稱:nette,代碼行數:4,代碼來源:Albums.php


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