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


PHP mysql::execute方法代碼示例

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


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

示例1: delAccessory

 /**
  * Suppression d'un accessoire donné.
  *
  * @param integer $id
  * @return boolean
  */
 public function delAccessory($id)
 {
     if (!$this->accessoryExists($id)) {
         $this->error->set(sprintf(__('m_estimate_accessory_%s_not_exists'), $id));
         return false;
     }
     $query = 'DELETE FROM ' . $this->t_accessories . ' ' . 'WHERE id=' . (int) $id;
     if (!$this->db->execute($query)) {
         return false;
     }
     $this->db->optimize($this->t_accessories);
     return true;
 }
開發者ID:jewelhuq,項目名稱:okatea,代碼行數:19,代碼來源:class.estimate.accessories.php

示例2: delProduct

 /**
  * Suppression d'un produit donné.
  *
  * @param integer $id
  * @return boolean
  */
 public function delProduct($id)
 {
     if (!$this->productExists($id)) {
         $this->error->set(sprintf(__('m_estimate_product_%s_not_exists'), $id));
         return false;
     }
     $query = 'DELETE FROM ' . $this->t_products . ' ' . 'WHERE id=' . (int) $id;
     if (!$this->db->execute($query)) {
         return false;
     }
     $this->db->optimize($this->t_products);
     return true;
 }
開發者ID:jewelhuq,項目名稱:okatea,代碼行數:19,代碼來源:class.estimate.products.php

示例3: resetVotes

 public static function resetVotes()
 {
     parent::execute("UPDATE country SET country_votes = 0, country_state = 'queued'");
 }
開發者ID:Amirzaidi,項目名稱:wwwroot,代碼行數:4,代碼來源:country.php

示例4: clear

 public static function clear()
 {
     //parent::execute('TRUNCATE TABLE ipvotes');
     //Truncate is extremely slow
     parent::execute('DELETE FROM vote');
 }
開發者ID:Amirzaidi,項目名稱:wwwroot,代碼行數:6,代碼來源:vote.php


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