本文整理匯總了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');
}