本文整理汇总了PHP中JDatabase::transactionCommit方法的典型用法代码示例。如果您正苦于以下问题:PHP JDatabase::transactionCommit方法的具体用法?PHP JDatabase::transactionCommit怎么用?PHP JDatabase::transactionCommit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JDatabase
的用法示例。
在下文中一共展示了JDatabase::transactionCommit方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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: doUpdate
/**
* Method to update an object in the database.
*
* @return void
*
* @since 12.1
* @throws RuntimeException
*/
protected function doUpdate()
{
// Get the primary key.
$primaryKey = $this->getTableKey('primary', 'primary');
try {
// Start a transaction.
$this->db->transactionStart();
// Update the data for each table.
foreach ($this->tables as $alias => $table) {
// Store the data to the database.
$dump = $this->dumpTable($alias);
$this->db->updateObject($table, $dump, $primaryKey);
}
// Commit the transaction.
$this->db->transactionCommit();
} catch (RuntimeException $error) {
// Rollback the transaction.
$this->db->transactionRollback();
// Rethrow the error.
throw $error;
}
}