/**
  * 테이블을 삭제한다.
  *
  * @param tableName
  * @return
  */
 public int dropTable(String tableName) throws DataAccessException {
   int result = 0;
   try {
     result = massmailStatisticDAO.dropTable(tableName);
   } catch (Exception e) {
     logger.error(e);
   }
   return result;
 }