public static function close()
 {
     if (self::$conn) {
         self::$conn->commit();
         self::$conn = NULL;
     }
 }
Пример #2
0
 /**
  * Aplica todas operações realizadas e fecha a transação
  */
 public static function close()
 {
     if (self::$conn) {
         // aplica as operações realizadas durante a transação
         self::$conn->commit();
         self::$conn = NULL;
     }
 }