当前位置: 首页>>代码示例>>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;未经允许,请勿转载。