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 6933191
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T11:48:02+00:00 2026-05-27T11:48:02+00:00

Basically what I need to do is to insert into table Reservation a vehicleID

  • 0

Basically what I need to do is to insert into table Reservation a vehicleID, startDate and endDate.

I can do that fine but I’d like to validate it so that it cannot be inserted for that vehicleID if the current date is <= endDate as currently I can just keep adding to the Reservation table on the same vehicleID

This is just the simple insert SQL statement.

strInsert = String.Format("Insert into Reservation (VehicleID, startDate, enddate) VALUES ('{0}','{1}','{2}')", vID, now, now5)

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-27T11:48:03+00:00Added an answer on May 27, 2026 at 11:48 am

    How about not attempting an insert if today’s date is less than the enddate you are inserting?

    If Date.Today <= now5 Then
       Throw New Exception("Invalid Date")
    Else
      strInsert = String.Format("Insert into Reservation (VehicleID, startDate, enddate) VALUES ('{0}','{1}','{2}')", vID, now, now5)
    End If
    

    UPDATE

    If you are implementing this all in SQL, then I recommend using a stored procedure, but in either case the logic is the same. Check to see if any reservations exist that overlap today and if they do, throw an exception from SQL.

    Note that GETDATE() is not quite the right value to use since it returns the current timestamp, but without know how the values are stored, it is used as an approximation and can be cleaned up later.

    CREATE PROCEDURE s_AddReservation
        @VehicleID   INT ,
        @StartDate   DATETIME ,
        @EndDate     DATETIME
    AS
        IF EXISTS(SELECT 1
                    FROM Reservation
                   WHERE VehicleID = @VehicleID
                     AND StartDate <= GETDATE()
                     AND EndDate >= GETDATE())
          BEGIN
            RAISERROR('This care has already been rented', 16, 1);
          END
        ELSE
          BEGIN
            Insert into Reservation (VehicleID, startDate, enddate) VALUES (@VehicleID, @StartDate, @EndDate)
          END
    GO
    

    To call this stored procedure from your code:

    var oCommand = new SqlCommand('s_AddReservation', conn);
    oCommand.CommandType = CommandType.StoredProcedure;
    oCommand.Parameters.AddWithValue("@VehicleID", vID);
    oCommand.Parameters.AddWithValue("@StartDate", now);
    oCommand.Parameters.AddWithValue("@EndDate", now5);
    
    oCommand.ExecuteNonQuery();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to do 2 query. Basically it's a mysql_query(INSERT INTO table ($value1,$value2)); and
I need to create an SQL query to insert some data into a table
I need to insert into new table (2 columns) Distinct description from other table
I need to create a table that basically keeps a list of indices only.
I need to insert one value into a table based on an auto incremented
Basically I need to insert a bunch of data to an Excel file. Creating
basically need to change the value that - admin_url() returns any idea?
I basically need to know how to import SQL code into Access. I've tried
Basically I need a hosted solution, where one can create an account for a
I need a way to insert images into a PostgreSQL database without using forms.

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.