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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T01:38:24+00:00 2026-05-27T01:38:24+00:00

I explain myself… I have a form with fill the query (eg.): SELECT *

  • 0

I explain myself…

I have a form with fill the query (eg.):

SELECT * 
FROM table 
WHERE id=? AND name=? AND sex=? AND year=? AND class=?

but only the “id” is mandatory, all the other parameter are optional.
How can I fill (or re-create) the prerared statement for that query ???

  • 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-27T01:38:25+00:00Added an answer on May 27, 2026 at 1:38 am

    You’d either have to use multiple prepared statements or just create a statement on the fly, checking which parameters you have.

    Like this:

    String query = "SELECT * FROM table WHERE id=?";
    if( nameParameter != null ) {
      query += " AND name=?"; //don't never ever directly add the value here
    }
    ...
    

    Update/Warning: Don’t directly add the parameter values to the query string but use PreparedStatement and the like instead. As displayed above the query string should only contain placeholders for the values (eg. ?) in order to prevent SQL-injection attacks.

    What I mean is, do NOT do the following:

    if( nameParameter != null ) {
      //NEVER EVER, REALLY I MEAN IT, DON'T DO THIS
      query += " AND name='" + nameParameter + "'"; 
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's see if I can explain myself, I have this models: class BillHeader(models.Model): number
I have a problem calling a static method from a class. Let me explain
I am trying to explain to myself the forecasting result from applying an ARIMA
Hey, guys, I tried to ask this yesterday but I didn't explain myself clearly
hope i can explain myself... i have a login control in the masterpage. when
I know this question sounds weird, but please, let me explain myself. I'm using
Sorry folks but I asked a question earlier and perhaps did not explain myself
I need to explain myself why I do not use static methods/propertis. For example,
I'm quoting myself on a previous question I asked to further explain: I'm trying
Please explain from Linux, Windows perspectives? I am programming in C#, would these two

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.