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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T15:51:17+00:00 2026-05-13T15:51:17+00:00

I have an Oracle XMLType column that stores the various language specific strings. I

  • 0

I have an Oracle XMLType column that stores the various language specific strings. I need to construct a Hibernate criteria that orders on this column. In order to do this, I need to extract the value with an Oracle function. This criteria is generated automatically by code I have written but I cannot, for the life of me, figure out how to extract the value and order on it via the criteria API. Basically, the generated SQL should look something like:

SELECT EXTRACTVALUE(title, '//value[@lang="EN"]') AS enTitle
FROM domain_object 
ORDER BY enTitle

I fiddled with projections momentarily, but they appear to execute a second select. Which I assume would cause hibernate to select ALL values and in memory sort them based on the projection? This would be very undesirable =\

  • 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-13T15:51:18+00:00Added an answer on May 13, 2026 at 3:51 pm

    Ok, I found a solution. Not sure this is the best, so I will leave it open for a little while if some one wants to provide a better answer / refine my solution.

    What I did was extend org.hibernate.criterion.Order thusly:

    package com.mycorp.common.hibernate;
    
    import org.hibernate.Criteria;
    import org.hibernate.HibernateException;
    import org.hibernate.criterion.CriteriaQuery;
    import org.hibernate.criterion.Order;
    import org.hibernate.engine.SessionFactoryImplementor;
    
    import com.mycorp.LocalizationUtil;
    
    public class LocalStringOrder extends Order {
        private static final long serialVersionUID = 1L;
    
        private boolean ascending;
        private String  propName;
    
        public LocalStringOrder(String prop, boolean asc) {
            super(prop, asc);
            ascending    = asc;
            propName = prop;
        }
    
        public String toSqlString(Criteria criteria, CriteriaQuery criteriaQuery) throws HibernateException {
            String[] columns = criteriaQuery.getColumnsUsingProjection(criteria, propName);
            StringBuffer fragment = new StringBuffer();
            for ( int i=0; i<columns.length; i++ ) {
                SessionFactoryImplementor factory = criteriaQuery.getFactory();
                fragment.append( factory.getDialect().getLowercaseFunction() )
                .append('(');
                fragment.append("EXTRACTVALUE(");
                fragment.append( columns[i] );
                fragment.append(", '//value[@lang=\"" + 
                    LocalizationUtil.getPreferedLanguage().name() + 
                    "\"')");
                fragment.append(')');
                fragment.append( ascending ? " asc" : " desc" );
                if ( i<columns.length-1 ) fragment.append(", ");
            }
            return fragment.toString();
        }
    
        public static Order asc(String propertyName) {
            return new LocalStringOrder(propertyName, true);
        }
    
    
        public static Order desc(String propertyName) {
            return new LocalStringOrder(propertyName, false);
        }
    }
    

    Then it was just a matter of saying criteria.addOrder(LocalStringOrder.asc('prop')).

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

Sidebar

Ask A Question

Stats

  • Questions 375k
  • Answers 375k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Having followed the logic of the code through, I have… May 14, 2026 at 8:22 pm
  • Editorial Team
    Editorial Team added an answer Yes, they're only for documentation. They're not actually used (as… May 14, 2026 at 8:22 pm
  • Editorial Team
    Editorial Team added an answer First of all, I'd avoid using glut -- it's buggy,… May 14, 2026 at 8:22 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.