一起源码网

标题: symfony 事务提交方法 [打印本页]

作者: 云文章    时间: 2020-5-9 09:30
标题: symfony 事务提交方法
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('')->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;
        }


作者: 全能吃货不挑食    时间: 2022-10-5 18:48
2021免费音乐下载




欢迎光临 一起源码网 (https://www.171739.xyz/) Powered by Discuz! X3.3