Loading src/Process/DbDiffProcess.php +21 −16 Original line number Diff line number Diff line Loading @@ -71,6 +71,7 @@ class DbDiffProcess implements ProcessInterface $conn->beginTransaction(); $stmt = $conn->executeQuery($sql); try{ while ($data = $stmt->fetchAssociative()) { $srcId = (int)$data['UNICAEN_TBL_SRC_ID']; $destId = (int)$data['UNICAEN_TBL_DEST_ID']; Loading @@ -89,6 +90,10 @@ class DbDiffProcess implements ProcessInterface } $conn->commit(); } catch (\Exception $e) { $conn->rollBack(); throw $e; } } Loading Loading
src/Process/DbDiffProcess.php +21 −16 Original line number Diff line number Diff line Loading @@ -71,6 +71,7 @@ class DbDiffProcess implements ProcessInterface $conn->beginTransaction(); $stmt = $conn->executeQuery($sql); try{ while ($data = $stmt->fetchAssociative()) { $srcId = (int)$data['UNICAEN_TBL_SRC_ID']; $destId = (int)$data['UNICAEN_TBL_DEST_ID']; Loading @@ -89,6 +90,10 @@ class DbDiffProcess implements ProcessInterface } $conn->commit(); } catch (\Exception $e) { $conn->rollBack(); throw $e; } } Loading