Package edu.ubb.warp.model

Examples of edu.ubb.warp.model.Booking


  }

  public Booking getMaxBookingByResource(Resource resource)
      throws ResourceNotBookedException, DAOException {
    Booking booking = new Booking();
    try {
      String command = "SELECT * FROM Booking WHERE ResourceID = ? AND Week = (SELECT MAX(Week) FROM Booking WHERE ResourceID = ?)";
      PreparedStatement statement = JdbcConnection.getConnection()
          .prepareStatement(command);
      statement.setInt(1, resource.getResourceID());
View Full Code Here


  }

  public Booking getMinBookingByProject(Project project)
      throws ProjectNotBookedException, DAOException {
    Booking booking = new Booking();
    try {
      String command = "SELECT * FROM Booking WHERE ProjectID = ? AND Week = (SELECT MIN(Week) FROM Booking WHERE ProjectID = ?)";
      PreparedStatement statement = JdbcConnection.getConnection()
          .prepareStatement(command);
      statement.setInt(1, project.getProjectID());
View Full Code Here

  }

  public Booking getMaxBookingByProject(Project project)
      throws ProjectNotBookedException, DAOException {
    Booking booking = new Booking();
    try {
      String command = "SELECT * FROM Booking WHERE ProjectID = ? AND Week = (SELECT MAX(Week) FROM Booking WHERE ProjectID = ?)";
      PreparedStatement statement = JdbcConnection.getConnection()
          .prepareStatement(command);
      statement.setInt(1, project.getProjectID());
View Full Code Here

TOP

Related Classes of edu.ubb.warp.model.Booking

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.