释放事务保存点
Boolean Driver_Database_Driver_MySQL_Transaction::_release_save_point( )
Boolean
true:成功;false:失败protected function _release_save_point($id)
{
if (!$this->is_root())
{
if (true === $this->_query("RELEASE SAVEPOINT {$id};"))
{
unset(Database_Driver_MySQL_Transaction::$transactions[$this->_connection_id][$id]);
return true;
}
}
return false;
}