A Hibernate (and NHibernate) feature that allows for both HQL and SQL queries to be written in the mapping document, keyed by a name. The main advantage is that your query is now residing in the same place as the definition of your mappings, instead of in your Java/C#/VB.NET/... code.
0
votes
0answers
19 views
An invalid or incomplete configuration was used while creating a SessionFactory. Errors in named queries:{}
I'm new to nhibernate and fluent nhibernate. For one of our projects we are using fluent hibernate which works fine, we would like to extend this to support .hbm.xml files mainly to execute stored ...
0
votes
2answers
22 views
Nhibernate Named SQL Query
Can any body tell me what is wrong with below query Named SQL Query using NHibernate.
As I am getting error - "Error in Named Query : GetSecondReviewIncomeStatements ":
<sql-query ...
0
votes
0answers
41 views
Netbeans CRUD generator: customization and is it efficient for real applications?
I use netbeans 7.2.1. Is JSF CRUD Generated code efficient for real applications?
I have created a test database and used netbeans CRUD generator. It uses DataModel and PaginationHelper instead of ...
0
votes
1answer
36 views
JPA named query cannot be resolved with Hibernate
I have added new named query:
@Entity(name = "books")
@NamedQueries({
@NamedQuery(name = "books.findByCategoryId",
query = "SELECT DISTINCT b.* FROM books b WHERE b.categoryId ...
0
votes
1answer
24 views
NamedQuery returning object instead of column
Hi I have a namedquery defined as below but when I execute it it retunrns me the whole object rather than just the fields that I have requested. Is there something that I am missing when I only want ...
0
votes
1answer
29 views
Multiple JPA queries error
I want to run multiple queries using @NamedQueries annotation but it is giving error that :
1. The attribute value is undefined for the annotation typed NamedQueries
2.NamedQueries can not be ...
0
votes
0answers
27 views
Hibernate Pass parameter in Custom SQL for loading a collection
<hibernate-mapping package="com.test.info">
<class name="LevelInfo">
<composite-id>
<key-property column="ID" name="id"/>
...
1
vote
0answers
34 views
JPA Left Join and Count
I want to retrieve all Foo objects and for every Foo object the number of associated Bar objects (zero or more) from the database. I want to do this in one single query and I don't want to fetch lists ...
0
votes
1answer
25 views
Using NamedQueries to query an encrypted column
I have a java app with JPA and I'm using oracle DB.
One property of an entity needs to be encrypted before saved into the DB.
I'm using application encryption, Base64.
I have a named query searching ...
0
votes
1answer
35 views
openjpa: illegal argument exception for value object
there is a NamedQuery like this:
@NamedQuery(name = "getOpakOdeslaniForPartner", query = "select
new com.vo.OpakOdeslaniVO(opak.pocetPokusu, opak.idSekvenceOpakovani.idOpakSekvence, ...
0
votes
1answer
29 views
Reuse HQL named queries fragments
I'm using HQL named queries (which are defined in XML files) to query my database using Hibernate. Some of the queries are quite complex and I find myself copy-pasting substantial parts of one query ...
2
votes
2answers
74 views
“Errors in named queries: User.findByUserNameAndPassword ”- Not able to solve
This is the first question I have posted here, so apologies in advance if I have violated any conventions or etiquette. I can't seem to get rid of the following exception:
Caused by: ...
0
votes
0answers
36 views
ejb3 named query that uses IN (“string1”,“string2”,…)
I wrote ejb3 named query:
@NamedQuery(name = "findProductWhereNameIn",
query = "SELECT f FROM product f, SubProduct s WHERE f.id = s.product.id
AND s.subReference = :reference AND f.productName IN ...
2
votes
1answer
77 views
Storing Complex Query as Named Query
I'm doing a project using JSF 2 and I have a particularly complicated query that does movie suggestions. I tried to put it as a named query and the compiler told me there was an error and I honestly ...
0
votes
1answer
65 views
jpa 2 query to retrieve data using join table
I have table structure as follows
table user: iduser, firstName, lastName, username, email, dateJoined, dateOfBirth, password
table tag : idtag, tagName
table post: idpost, title, content, iduser, ...
4
votes
1answer
94 views
JPQL with subquery to select max count
I'm trying to write a jpql query to select the user with the most comments. If two users have the same amount of comments I want to select both.
I tried this, something like this:
SELECT
c.user, ...
0
votes
1answer
35 views
What JPA Named Query can I use to access a ManyToMany join?
I have a JPA entity called 'Order'. When an Order is 'renewed' (copied with minor changes), I store a reference to the original Order in the 'renewed' Order.
JPA Entity reference:
@ManyToMany
...
0
votes
2answers
149 views
How to make this select * from two joined tables query in HQL form?
I had two hibernate entity here with annotation:
@Entity
@Table(name = "CLIENT")
public class Client {
private Long pkClient;
private String name;
@Id
...
-1
votes
1answer
124 views
jpa named query using foreign key is not working
MY Entity class
@Entity
@Table(catalog = "", schema = "MYIS")
@XmlRootElement
@NamedQueries({
@NamedQuery(name = "Answers.findAll", query = "SELECT a FROM Answers a"),
@NamedQuery(name = ...
0
votes
0answers
54 views
Named-Query to get a specific value from an associative table in EJB?
I asked a very similar question about a month ago, only then I needed it done in C# with a "regular" sql-statement.
The question went something like this:
"I have two tables and one table that ...
0
votes
1answer
44 views
Java EE NamedQuery and JOIN statement - results in EJB Exception
I have an entity called Lots as follows:
public class Lots implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private int ...
1
vote
1answer
126 views
Named query with composite key (EJB)
I have a associative table with composite key. I am trying to run a named query that selects based on some values (the composite key(s)).
This is what the code looks like:
@Entity
@NamedQueries({
...
1
vote
0answers
112 views
JPA NamedQuery Sub Query
I am knocking my head off on a Named Query. I use JPA.. What I would like to achieve is to select all articles with active flags, for a specifc last state (passed as a parameter).
Here are my ...
1
vote
2answers
70 views
Dynamic namedQueries
Is their a dynamic namedquery on grails? Im not sure if its the right term but, I mean a namedquery that can be true to all.
Something like:
namedQueries = {
dynamicQuery{ term, name, value ->
...
0
votes
0answers
133 views
Hibernate/JPA optional formula column
I'd like to be able to use a group formula in a transient column in a Hibernate/JPA mapping for a named query without screwing up the CRUD operations.
Hibernate version is ~3.0, DB is Oracle 10
This ...
0
votes
0answers
151 views
hibernate named query with object
I put this in my District.hbm.xml file
<sql-query name="getCarsPerDistrict">
<return alias="district" class="java.lang.Object"/>
<![CDATA[SELECT id, name, district_code, ...
0
votes
1answer
41 views
avoiding multiple selects when using kew word “new” in hql
I have the following code in java.
List<UserHelper> users=List<UserHelper>)session.getNamedQuery("PkUser.loadHelperUsers").list();,
I think it does not matter what the "UserHelper" ...
0
votes
1answer
297 views
Hibernate namedquery error-parameter id does not exist as a named parameter in [from Employeenam e where e.name=:name]
I have two classes,a POJO and a main class and i'm working with named query with annotation in hibernate.
the POJO class is as follows
@NamedQueries(
{
@NamedQuery(
...
1
vote
0answers
99 views
JPA Named query returns partial Result sporadically
I have a table PhoneModels
ID, Name , Vendor
1, iphone, Apple
2, Xperia, Sony Erricson
3, Razor, Motorola
i have a corresponding Entity
class PhoneModel implements Serializable {
@Id
...
0
votes
2answers
123 views
I have a issue in hibernate namedquery
I'm using annotation for named query in hibernate.I have two classes a POJO class and a main class.The POJO class is as follows
@NamedQuery(
name="findEmployeeName",
query="select * from ...
0
votes
1answer
77 views
javax.persistence NamedQuery not working as expected
I'm probably being dense about this but a query isn't returning the results I'm expecting...
I have two tables(entities): Properties and Landlords as follows:
Properties is made up of the fields ...
0
votes
1answer
52 views
DATE_SUB named query MYSQL
Have a named query written like this
select u from User u where u.creationdate < DATE_SUB(CURDATE(),INTERVAL :upperDate DAY) and status=:status and reminder_counter =:counter
But I get a Syntax ...
0
votes
0answers
109 views
Criteria API query or namedQuery for three joined tables
How can I create Criteria API (or namedQuery) for three joined tables. I actually have SQL query:
SELECT DISTINCT og.* FROM
cp_offer_group AS og,
cp_offer AS o,
cp_client_subscription AS ...
0
votes
3answers
506 views
Hibernate Named Query with Aggregate function
I am trying to execute a named query in Hibernate. The query is defined in this mapping file:
<?xml version="1.0"?>
<class name="MxePosition" table="MY_TABLE">
<id name="id" ...
1
vote
1answer
239 views
Fill a DTO's List attribute with hibernate named query and spring
I'm wondering if the following could be achieved with hibernate. considering the following DTO:
public class ClassDTO {
private String className;
private List<String> studentNames;
...
1
vote
1answer
101 views
EJBQL Named Query - How to Sum BigDecimal
I have a BigDecimal representing money. I want to be able to select a sum of it in a NamedQuery but it won't sum BigDecimals.
@NamedQuery(name=Account.CALCULATE_TRANSACTIONS, query="SELECT ...
0
votes
2answers
400 views
Illegal conversion exception after passing Enum List to namedQuery.setParameter() in Hibernate
I am using Hibernate over DB2. When I create a NameQuery with the parameter being a List of enum values, getResultList() throws Illegal converation exception.
@NamedQuery(
...
0
votes
0answers
92 views
How to map @namedquery to non-entity which has a List
I have a simple non-Entity in Java JPA Hibernate MySQL setup like this:
public class BasicDTO {
public BasicDTO(String empName, List deptNames) {
this.empName = empName;
...
0
votes
0answers
71 views
Grails named queries of children with size 0
I have a class like as follows:
class Parent {
String name
static hasMany = {
children: Child,
cars: Car
}
static namedQueries = {
search { String searchString ->
or {
...
2
votes
1answer
202 views
java.lang.ClassCastException: [Ljava.lang.Object or LazyInitializationException
I write named query like this
<query name="GET_QUESTIONS_BY_TEST_ID">select tq from TestQuestion as tq inner join tq.question as
q
where
...
0
votes
1answer
551 views
org.hibernate.QueryException: Expected positional parameter
I have a namedQuery thru which I pass 2 parameters like below,
ArrayList idName= new ArrayList();
idName.add(id); --int
idName.add(ABC); --String
and I pass this object to namedQuery as ...
0
votes
2answers
624 views
hibernate namedQuery
I want to pass values to a NamedQuery.
I am selecting from a view and my namedQuery in xml file looks like this:
<sql-query name="findAll">
<return alias="RcvrGroup" ...
0
votes
3answers
759 views
Hibernate update with EntityManager
I am using Hibernate 4.1.7 and trying to update object, but theres no documentation how it should be done. Currently, I am doing this:
Person person = personDao.getPersonById(1);
...
2
votes
1answer
168 views
jpa delete query error: unexpected token
I want to delete a list of items and I defined the following query for the Entity Email:
@NamedQuery(name = Email.namedQueryDeleteOldEmails,
query = "DELETE FROM Email e where e.creationDate <= ...
0
votes
1answer
63 views
How to determine if an Entity has a NamedQuery
Again, posting and answering a question for the benefit of others based on a problem I had the other day. Hopefully this saves someone a bit of time. I was a little surprised this wasn't built into ...
2
votes
2answers
219 views
List of all NamedQueries in JPA
I want to get a list of all NamedQueries within my application and I also want to invoke them generically at runtime. Is there an option to get the list as well as some kind of meta-data (generally ...
2
votes
2answers
415 views
Named Query parameter in hour interval
I'm currently having trouble to execute this query using HQL.
String queryString = "SELECT o FROM Orders o WHERE o.orderMade >= DATE_SUB(NOW(), INTERVAL :fetchTime HOUR)";
this will fetch the ...
1
vote
1answer
121 views
grails namedQueries how to use OR
Essentially I have 3 fields I want to check for:
class Book {
String title
String ISBN
String type
}
I am trying to use named queries to do a case insensitive search of each of those 3 ...
0
votes
2answers
201 views
Hibernate NamedQuery with a condition on inner List
class A{
// one to many mapping
List<B> listOfB;
//getter and setter;
class B {
String s;
//getter and setter
}
Now, when I get class A , it will return all the ...
0
votes
1answer
127 views
Polymorphic query with JPA and mapped superclass to return count of a particular concrete entity
I have a BaseEntity abstract class which is a super class for all my entities. This is a MappedSuperClass. Now I want to define a named query preferably on the base-entity such that it returns me the ...


