本文整理汇总了PHP中JDatabaseDriver::transactionCommit方法的典型用法代码示例。如果您正苦于以下问题:PHP JDatabaseDriver::transactionCommit方法的具体用法?PHP JDatabaseDriver::transactionCommit怎么用?PHP JDatabaseDriver::transactionCommit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JDatabaseDriver
的用法示例。
在下文中一共展示了JDatabaseDriver::transactionCommit方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: transactionCommit
/**
* Method to commit a transaction.
*
* @param boolean $toSavepoint If true, commit to the last savepoint.
* @return self Returns this object to support chaining.
*
* @throws \RuntimeException
*/
public function transactionCommit($toSavepoint = false)
{
if (version_compare($this->cmsRelease, '3.2', '>=')) {
$this->_db->transactionCommit($toSavepoint);
} else {
if (!$toSavepoint || $this->transactionDepth <= 1) {
$this->_db->transactionCommit();
$this->transactionDepth = 0;
return $this;
}
$this->transactionDepth--;
}
return $this;
}
示例2: doDelete
/**
* Do delete action, this method should be override by sub class.
*
* @param mixed $conditions Where conditions, you can use array or Compare object.
*
* @throws \Exception
* @return boolean Will be always true.
*/
protected function doDelete(array $conditions)
{
$query = $this->db->getQuery(true);
// Conditions.
QueryHelper::buildWheres($query, $conditions);
$query->delete($this->table);
$this->db->transactionStart(true);
try {
$result = (bool) $this->db->setQuery($query)->execute();
} catch (\Exception $e) {
$this->db->transactionRollback(true);
throw $e;
}
$this->db->transactionCommit(true);
return $result;
}
示例3: transactionCommit
/**
* transactionCommit
*
* @param bool $asSavePoint
*
* @return $this
*/
public function transactionCommit($asSavePoint = false)
{
$this->db->transactionCommit($asSavePoint);
}