Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /* Empieza la Transaccion */
  2. $dbh->beginTransaction();
  3. /* Realiza Consultas */
  4. $sth = $dbh->exec("DROP TABLE fruit");
  5. $sth = $dbh->exec("UPDATE dessert
  6.               SET name = 'hamburger'");
  7. if($sth == false){
  8.      /*Se produjo error */
  9.      $dbh->rollBack();
  10. }else{
  11.      /*Todo Bien, Confirmamos*/
  12.      $dbh->commit();
  13. }
  14.