Package edu.uga.galileo.slash.bo

Examples of edu.uga.galileo.slash.bo.Article


      ps.setString(1, startDate);
      ps.setString(2, endDate);
      rs = ps.executeQuery();

      while (rs.next()) {
        results.add(new Article(rs.getString("query1"), rs
            .getInt("queryCount")));
      }
    } catch (SQLException e) {
      Logger.error("StatsDAO getTopArticlesAndCounts failure: "
          + e.toString());
View Full Code Here

TOP

Related Classes of edu.uga.galileo.slash.bo.Article

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.