Example #1
0
 /**
  * Delete or soft delete all records, depending on CotisationPeer::$softDelete
  *
  * @param			 PropelPDO $con the connection to use
  * @return		 int	The number of affected rows (if supported by underlying database driver).
  * @throws		 PropelException Any exceptions caught during processing will be
  *							rethrown wrapped into a PropelException.
  */
 public static function doDeleteAll(PropelPDO $con = null)
 {
     if (CotisationPeer::isSoftDeleteEnabled()) {
         return CotisationPeer::doSoftDeleteAll($con);
     } else {
         return CotisationPeer::doForceDeleteAll($con);
     }
 }