I'm upgrading from the Hibernate Criteria API to the JPA2 Criteria API, and am running into the following problem, which I can't seem to resolve.
In the Hibernate Criteria I was using Restrictions.sqlRestriction to check for a particular kind of string subset:
criteria.add(Restrictions.sqlRestriction("{alias}.location_key = left((?), length({alias}.location_key))", searchObj.getLocationKey(), Hibernate.STRING));
This essentially checks that the first N letters of the input string match the location_key which is N letters long. That is the input string Canada,ON should be matched by anything like: Canada, or Can or C.
The problem is that JPA2 doesn't allow us to code native sql like that, and I'm not sure how I can achieve something similar without the left function (which I think might be mysql specific).
Any help is appreciated!