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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T11:44:05+00:00 2026-05-16T11:44:05+00:00

I am having a textbox field in my jsp called req_date. The user is

  • 0

I am having a textbox field in my jsp called “req_date”. The user is selecting a date from a javascript calendar in the format of “DD-MON-YY” ex. “29-aug-2010”.So, now I am stuck while trying to insert it in the DB.

I tried ” String queryString = “INSERT INTO Charity (req_date) VALUES (?)”, but it is not inserting. How do I solve tis out.

The req_date is type of date in the DB.

Can you please help

  • 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-16T11:44:06+00:00Added an answer on May 16, 2026 at 11:44 am

    Date format depends upon Database you use.
    For reference Date formats with Oracle.

    so your query should look like :

    String queryString = "INSERT INTO Charity (req_date) VALUES (to_date('29-aug-2010', 'dd-mon-yyyy'))"
    

    This is just to answer your question. But I will prefer usage of PreparedStatement as also suggested in other answers.

    Your code using PreparedStatement should look something like following: (NOTE: I have not tested this code )

        String formatIn = "dd-MMM-yyyy";
        SimpleDateFormat sdfi = new SimpleDateFormat(formatIn);
        java.util.Date inDate = sdfi.parse("29-Aug-2010");
    
        java.sql.Date sqlDate = new java.sql.Date(inDate.getTime());
    
        PreparedStatement prest = con
                .prepareStatement("INSERT INTO Charity (req_date) VALUES (?)");
        prest.setDate(1, sqlDate);
        int row = prest.executeUpdate();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm having trouble displaying the only date part of a DateTime into a textbox
I want to clear the textbox having Jquery Autocomplete once the user has made
i am using a Form where i am having a textbox which on submit
How to disable a textbox in CSS? Currently we are having a textbox in
I'm having trouble figuring out a way to conditionally cancel an asp:TextBox's OnTextChanged AutoPostBack
I'm having some trouble doing a very simple task. I have a rich textbox
How can I raise an event while clicking a textbox? I'm having trouble finding
I have 3 div tags. Each having no. of textboxes and button. Each textbox
I'm having a problem displaying data from a function to text box within a
I'm having a pretty nasty problem with an auto-completing textbox. I want to initiate

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.