Package edu.uga.galileo.slash.bo

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


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

      while (rs.next()) {
        results.add(new Institution(rs.getString("inst_name"), rs
            .getInt("instCount")));
      }
    } catch (SQLException e) {
      Logger.error("StatsDAO getInstitutionsAndCounts failure: "
          + e.toString());
View Full Code Here

TOP

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

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.