本文整理汇总了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;
}
示例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;
}
示例3: resetVotes
public static function resetVotes()
{
parent::execute("UPDATE country SET country_votes = 0, country_state = 'queued'");
}
示例4: clear
public static function clear()
{
//parent::execute('TRUNCATE TABLE ipvotes');
//Truncate is extremely slow
parent::execute('DELETE FROM vote');
}