symfony 事务提交

2018-06-22 05:28:54来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

1. 添加数据

 新建一个对象,给对象赋值

$em = $this->getDoctrine()->getManager(); //添加事物
$em->getConnection()->beginTransaction(); 
try { 
  $model= new class();
  $model->setName($name);
  $em->persist($model );
  $em->flush(); 
  $em->getConnection()->commit(); 
} catch (\Exception $ex) {
  $em->getConnection()->rollback();
  throw $ex;
}

  

 2. 修改数据

Bundle:table
Bundle名字,和table名
$Obj = $this->getDoctrine()->getRepository('Bundle:table')->findOneBy(  array('id'=>$id));
$em = $this->getDoctrine()->getManager(); //添加事物 $em->getConnection()->beginTransaction(); try { $Obj->setName( $name); $em->persist($Obj); $em->flush(); $em->getConnection()->commit(); } catch (\Exception $ex) { $em->getConnection()->rollback(); throw $ex; }

  

3. 删除

$Obj = $this->getDoctrine()->getRepository('Bundle:table')->findOneBy(  array('id'=>$id));
$em = $this->getDoctrine()->getManager(); //添加事物
        $em->getConnection()->beginTransaction();        
        try {
            $em->remove($Obj);
            $em->flush();            
            $em->getConnection()->commit(); 
        } catch (\Exception $ex) {
            $em->getConnection()->rollback();
            throw $ex;
        }

  

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:thinkphp中session跨域问题

下一篇:在IE浏览器 使用PHPExcel导出文件时时 文件名中文乱码