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

  • Home
  • SEARCH
  • 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 8491271
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T22:22:13+00:00 2026-06-10T22:22:13+00:00

How to set Null Value to query.setString for a named parameter in Hibernate ?

  • 0

How to set Null Value to query.setString for a named parameter in Hibernate ?

Thanks,
Kathir

  • 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-10T22:22:15+00:00Added an answer on June 10, 2026 at 10:22 pm

    I think you can’t do, because in SQL you need a different syntax for null values. Examples in SQL:

    select x.col from table x where x.string = 'text';
    

    But with a null value you do

    select x.col from table x where x.string is null;
    

    As a consequence, you can’t set null in named parameters in SQL. Also in Hibernate you need a different query when your string is null. For example:

    String select;
    if (s == null) {
      select = "from Table where column is null";
    } else {
      select = "from Table where column = :string";
    }
    Query q = session.createQuery(s);
    if (s != null) {
      q.setString("string", s);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The value (parameter) of ABC can be NULL. I'm struggling with how to set
I need to sometimes set the value of an int to null and sometimes
I have the following query. I need Description to be set to the value
I have taken String value from a EditText and set it inside SELECT QUERY
How do I insert/update null values in date columns in Doctrine2? I've set the
I am aware that I can set null like string val = null; But
The first index is set to null (empty), but it doesn't print the right
So I have a gui where the layout is set to Null, and I
I have a table with a field: 'last_modified - timestamp NOT NULL' I set
Currently I can set ringtones and notifications with: byte[] buffer = null; InputStream fIn

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.