本文整理汇总了PHP中JDatabaseDriver::transactionStart方法的典型用法代码示例。如果您正苦于以下问题:PHP JDatabaseDriver::transactionStart方法的具体用法?PHP JDatabaseDriver::transactionStart怎么用?PHP JDatabaseDriver::transactionStart使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JDatabaseDriver
的用法示例。
在下文中一共展示了JDatabaseDriver::transactionStart方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: 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;
}
示例2: transactionStart
/**
* Method to initialize a transaction.
*
* @param boolean $asSavepoint If true and a transaction is already active, a savepoint will be created.
* @return self Returns this object to support chaining.
*
* @throws \RuntimeException
*/
public function transactionStart($asSavepoint = false)
{
if (version_compare($this->cmsRelease, '3.2', '>=')) {
$this->_db->transactionStart($asSavepoint);
} else {
if (!$asSavepoint || !$this->transactionDepth) {
if ($this->query('START TRANSACTION')) {
$this->transactionDepth = 1;
}
return $this;
}
$savepoint = 'SP_' . $this->transactionDepth;
if ($this->query('SAVEPOINT ' . $this->nameQuote($savepoint))) {
$this->transactionDepth++;
}
}
return $this;
}
示例3: transactionStart
/**
* transactionStart
*
* @param bool $asSavePoint
*
* @return $this
*/
public function transactionStart($asSavePoint = false)
{
$this->db->transactionStart($asSavePoint);
}