Snippets

Create an account or login to be able to add, comment and rate snippets.

Navigation

Refine Tags

Snippets tagged "transaction" Snippets tagged "transaction"

Use transaction in the model

$con = Propel::getConnection();
try
{
  $con->begin();
 
  // do something
 
  $con->commit();
}
catch (Exception $e)
{
  $con->rollback();
  throw $e;
}
by Fabien Potencier on 2006-05-20, tagged propel  transaction 
(2 comments)