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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T20:49:11+00:00 2026-06-08T20:49:11+00:00

I have a common class for all DAO’s where we will read queries and

  • 0

I have a common class for all DAO’s where we will read queries and execute them as below. I will send parameters from DAO to this class.

Connection connection = Queries.getConnection();
String query = Queries.getQuery(queryName);//Queries i will get from xml
PreparedStatement preparedStatement =  connection.prepareStatement(query);

what is the best way to set parameters dynamically to prepared Statement in JDBC. I believe, we don’t have named parameters concept in JDBC as we have in spring JDBC. We are only simple JDBC in our project.

  • 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-06-08T20:49:13+00:00Added an answer on June 8, 2026 at 8:49 pm

    write something like this:

    public static int mapParams(PreparedStatement ps, Object... args) throws SQLException {
        int i = 1;
        for (Object arg : args) {         
             if (arg instanceof Date) {
            ps.setTimestamp(i++, new Timestamp(((Date) arg).getTime()));
        } else if (arg instanceof Integer) {
            ps.setInt(i++, (Integer) arg);
        } else if (arg instanceof Long) {
            ps.setLong(i++, (Long) arg);
        } else if (arg instanceof Double) {
            ps.setDouble(i++, (Double) arg);
        } else if (arg instanceof Float) {
            ps.setFloat(i++, (Float) arg);
        } else {
            ps.setString(i++, (String) arg);
        }
       }
      }
    }
    

    and in the queries just use ‘?’ where you need to set the parameter.

    I know that this is old school code, but just to give some minimalistic example…

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

Sidebar

Related Questions

I have a common base class from which all my ASMX webservice classes will
I have common functionality that I need to access from all screens of my
I have quite a lot of classes declared, all of them are inheriting from
I have some ASP.NET web services which all share a common helper class they
I have a abstract class which has some common methods for all of my
I have a DBIC schema, where all the classes use a common base class,
I have a page full of selects, and they all have a common class.
Assume some domain and view objects (that have no common base class) public class
I have several divs that share a common class. If one of these divs
I have a class TxRx with a property called Common. Common then has a

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.