Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6803009
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T19:17:30+00:00 2026-05-26T19:17:30+00:00

ok not as simple as title may make it sound. I tried this in

  • 0

ok not as simple as title may make it sound. I tried this in a very primal way with c# and it worked, but I have a feeling a better job could be achieved with Java and Oracle as database. So the thing is:

I have a reservation system. multiple bookings could be made on the same day for period between date X and date Y as long as each day in the range can accommodate the requested number. Maximum number of clusters to reserve is 46. Hence logically you would look at each day as a holder of 46 cluster reservation and deduce from that.

Now what I have difficulty working out is:

when there are n number of bookings stored and valid in database, then I want to make new booking. So how do I check if this new date range falls within any of the previously booked days or not. Not talking simply here about x falling in y (as ranges). More like:

   X_______________________________________Y
       X________________________________y
  X________________________________Y
                         X________________________________Y

as u can see the overlap is happening.

Please let me know how could I do this as it will affect early design of objects
Regards

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T19:17:31+00:00Added an answer on May 26, 2026 at 7:17 pm

    Assume your date has two methods: isBefore(Date other) and isAfter(Date other). Obviously if they don’t you can cure this with an external method or wrapping or something. Edit: java.util.Date has compareTo method you could use.

    You do this:

    public boolean overlapsWithExisting(Booking booking) {
        final Date early = booking.getStart();
        final Date late = booking.getEnd();
        for(Booking existing : existingBookings) {
            if(!(early.isAfter(existing.getEnd()) || late.isBefore(existing.getStart()))
                return true;
        }
        return false;
    }
    

    We compare this booking to all existing bookings. If this booking ends before the existing booking even starts, or if this booking starts after the existing booking ends, then it doesn’t conflict. Any other condition and they will overlap.

    Do this to each booking.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm not sure how simple this would be, but I'm using a script which
Ok Title may not be clear so let me explain. I have 2 classes,
I apologize that the title may not make sense, so let me describe my
The title may be not exactly, but I don't know how to express it.
I'm trying to accomplish one simple task (but is not simple for me). I
This somehow simple task is not so simple. I can get the number of
This is not as simple as it seems. Most of you are likely thinking
Maybe my question it's a little weird, but I'm trying to build a not-so-simple
why this simple query not working. I know it was OK before I upgraded
I am tired to find out why this simple query not working. SELECT image_url

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.