本文整理汇总了PHP中Horde_Db_Adapter::commitDbTransaction方法的典型用法代码示例。如果您正苦于以下问题:PHP Horde_Db_Adapter::commitDbTransaction方法的具体用法?PHP Horde_Db_Adapter::commitDbTransaction怎么用?PHP Horde_Db_Adapter::commitDbTransaction使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Horde_Db_Adapter
的用法示例。
在下文中一共展示了Horde_Db_Adapter::commitDbTransaction方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: remove
/**
* Removes a group.
*
* @param mixed $gid A group ID.
*
* @throws Horde_Group_Exception
*/
public function remove($gid)
{
try {
$this->_db->beginDbTransaction();
$this->_db->delete('DELETE FROM horde_groups_members WHERE group_uid = ?', array($gid));
$this->_db->delete('DELETE FROM horde_groups WHERE group_uid = ?', array($gid));
$this->_db->commitDbTransaction();
} catch (Horde_Db_Exception $e) {
throw new Horde_Group_Exception($e);
}
}
示例2: destroy
/**
*/
public function destroy($id)
{
/* Build the SQL query. */
$query = sprintf('DELETE FROM %s WHERE session_id = ?', $this->_params['table']);
$values = array($id);
/* Execute the query. */
try {
$this->_db->delete($query, $values);
$this->_db->commitDbTransaction();
} catch (Horde_Db_Exception $e) {
return false;
}
return true;
}
示例3: removeAllVersions
/**
*/
public function removeAllVersions($pagename)
{
/* Remove attachments and do other cleanup. */
parent::removeAllVersions($pagename);
$this->_pageNames = null;
try {
$this->_db->beginDbTransaction();
$this->_db->delete('DELETE FROM ' . $this->_params['table'] . ' WHERE page_name = ?', array($this->_convertToDriver($pagename)));
$this->_db->delete('DELETE FROM ' . $this->_params['historytable'] . ' WHERE page_name = ?', array($this->_convertToDriver($pagename)));
$this->_db->commitDbTransaction();
} catch (Horde_Db_Exception $e) {
$this->_db->rollbackDbTransaction();
throw new Wicked_Exception($e);
}
}
示例4: sort
/**
*/
public function sort($rules)
{
$old = $this->_filters;
parent::sort($rules);
$query = sprintf('UPDATE %s SET rule_order = ? WHERE rule_id = ?', $this->_params['table_rules']);
$this->_db->beginDbTransaction();
try {
foreach ($this->_filters as $key => $val) {
$this->_db->update($query, array($key, $val['id']));
}
} catch (Horde_Db_Exception $e) {
$this->_db->rollbackDbTransaction();
$this->_filters = $old;
throw new Ingo_Exception($e);
}
$this->_db->commitDbTransaction();
}
示例5: commitDbTransaction
/**
* Commits the transaction (and turns on auto-committing).
*/
public function commitDbTransaction()
{
$result = $this->_write->commitDbTransaction();
$this->_lastQuery = $this->_write->getLastQuery();
return $result;
}