Tagged Questions

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.

learn more… | top users | synonyms

15
votes
1answer
8k views

JPQL IN clause: Java-Arrays (or Lists, Sets…)?

I would like to load all objects that have a textual tag set to any of a small but arbitrary number of values from our database. The logical way to go about this in SQL would be to build an "IN" ...
6
votes
1answer
1k views

fluent nhibernate named-query without using hbm file for the map

I am needing to create a named-query, and use it with one of the maps, that i currently have defined as a fluent map. is it possible to continue using the fluent map, and be able to create the ...
6
votes
4answers
11k views

define named query in orm.xml with jpa and hibernate

I'm trying to put my named queries in my orm.xml (put in META-INF with persistence.xml) but my orm.xml seems to be ignored by hibernate/jpa. When I try to create my named query with ...
4
votes
2answers
497 views

JAVA: NamedQuery String problem

Hello guys I am having some problems with exact matches while doing a NamedQuery. I am currently using something like this: @NamedQuery(name = MyClass.GET_ENTRY_BY_NAME, query = "select e from Entry ...
3
votes
3answers
481 views

How can I handle a possibly empty parameter List when using a named query in NHibernate?

I'm having issues on handling a situation where a list of parameters sent to a named query in NHibernate is empty. This is an example of my situation: <sql-query ...
3
votes
2answers
3k views

Getting 'Named query not found' with Spring framework

I have a Java class (Entity) with a set of named queries. When the Spring tries to inject the related bean, it is not finding one of the queries. As example: @NamedQueries({ @NamedQuery(name ...
3
votes
3answers
355 views

How do you decide in which entity classes to put JPA NamedQuery annotations?

Say I have a Customer - CustomerOrder one-to-many bi-directional relationship with the CustomerOrder holding the total value of each order. If I had a query to find the total value of all orders for ...
3
votes
1answer
1k views

NHibernate Fluent and named Queries

I am using Nhibernate with fluent. Now I want to call some Stored procedure and use named Queries. I created some xml: <?xml version="1.0" encoding="utf-8"?> <hibernate-mapping> ...
2
votes
1answer
51 views

Named Queries Error in nhibernate

I have a named query in my nhibernate mapping file, and every time i run the code, it fails to create the Session with the message 'Errors in named queries', and no inner exception or anything else ...
2
votes
0answers
103 views

nhibernate named query join single record

This is what i have: class Unit { public Position ManagerPosition; } <sql-query name="GetUnits" read-only="true"> <query-param name="UserGroupId" type="int"/> <query-param ...
2
votes
3answers
94 views

Is it good practice to use @NamedQuery for single column selects (J2EE/JPA, Hibernate)

I'm working on J2EE 6 codebase that uses Hibernate as its persistence provider. My experience lies more in Spring and I'm quite new to JPA annotations and similar, but I've noticed a lot of this in ...
2
votes
4answers
818 views

Hibernate: Mapping custom column names in stored procedure named query

I currently have the following named query that wraps around a stored procedure:- <hibernate-mapping> <sql-query name="mySp"> <return-scalar column="name_first" ...
2
votes
1answer
537 views

Combine NamedQuery and Criteria in Hibernate

I use Hibernate in a storefinder application. For the proximity search in SQL I use the haversine formula. Because this is a bit messy SQL I created a named SQL query in my .hbm.xml File for this. ...
2
votes
1answer
665 views

Trouble with hibernate's named query

I am new to hibernate and I am having some trouble with the named query annotation. My code is as follows and is more or less generated by NetBeans The BasicUser class: package wmc.model; ...
2
votes
2answers
938 views

Doctrine Named Queries: Specifing limit on query call

Let's imagine something like this: class MyTable extends Doctrine_Table { public function construct() { $q = Doctrine_Query::create()->from('MyTable t') ...
1
vote
1answer
53 views

NHibernate pass Geography type to Named Query SetParameter()

I'm in the process of introducing NHibernate 3 into a data access layer for an ASP.NET MVC web application. Within the SQL Server 2008 R2 database, a geography datatype is used to store lat/long ...
1
vote
2answers
109 views

Hibernate Named Query - join 3 tables

I have 3 beans: Organization, Role, User Role - Organization relation - @ManyToOne Role - User relation - @ManyToMany Organization : @Entity @Table(name = "entity_organization") public ...
1
vote
1answer
92 views

JPA2 (Hibernate) how to query 2 tables (joined) but only need certains properties from 2nd table

I am using JPA2 with hibernate as provider in java ee6 environment. I have a one to many relationship and when getting all the rows for the one side to display in a JSF page, I want to display some ...
1
vote
1answer
81 views

Define Named Query in NHibernate Fluent Mapping without .hbm or xml files

Currently I am using NHibernate and Fluent mapping for as ORM. I use named queries to call stored procedures. The named queries are saved in .hbm files. e.g: <hibernate-mapping ...
1
vote
2answers
255 views

NamedQuery defined in DAO annotation not found by Hibernate session factory

I use Spring along with Hibernate. In my DAO, I defined a NamedQuery which is not found by the session factory, although I have added the package of that DAO to the packagesToScan. My DAO: /** * ...
1
vote
1answer
190 views

Calling Stored Procedure using NHibernate as a Named Query with Input Parameters

Problem Description: I am trying to execute a stored procedure with an input parameter. The stored procedure executes correctly when run from MSSQL 2008 SQL Studio. However I get an error while ...
1
vote
2answers
233 views

JPA Named Queries vs Criteria API?

Is there a heuristic/best practice/ruleset for a decision between the Criteria API and NamedQuery? My thoughts so far : Named queries are generally more readable. Criteria queries are more flexible. ...
1
vote
2answers
115 views

Named Queries Pros and Cons

Is there any significant advantage of having queries as NamedQueries over the Entities? If not we could have it in the DAO itself. Kindly throw some ideas in this regard.
1
vote
1answer
693 views

NamedQuery: IllegalArgumentException (Query not found) after externalizing entities

I have successfully used javax.persistence.NamedQuery in combination with JPA2. The named queries are defined at the top of the entity class files, and are used from Stateless EJBs (entity facade). ...
1
vote
1answer
171 views

Java jSF NamedQuery using an Int

I am making a search query for a integer. This is the NamedQuery in the class Factuur: @NamedQueries({ @NamedQuery(name = "getFactuurs", query = "SELECT f FROM Factuur f WHERE " + "f.periode LIKE ...
1
vote
1answer
282 views

nhibernate NamedQuery from criteriaQuery --> help needed

I am trying to convert a working criteria query into a named query, and not getting the syntax right. The hql version apparently wants both the type and id params specified. The query is over a ...
1
vote
1answer
165 views

Can't access a stand alone domain object in hql namedQuery

First I need to apologize for the long post, I struggle with being overly verbose and yet not always clear enough. I also have searched extensively for an elegant solution for my issue and if I missed ...
1
vote
1answer
889 views

how to use a stored procedure in nhibernate

Hello I try to use stored procedure in nhibernate and I found some methods : <?xml version="1.0" encoding="utf-8" ?> <hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"> <sql-query ...
1
vote
2answers
242 views

Using if else statement for named query?

@NamedQueries( { @NamedQuery(name = "GetAvailableProducts", query = new StringBuilder("").append("SELECT p FROM Product p WHERE p.type= :type AND (p.available = 'ALL' OR").append(isTest() ? ...
1
vote
0answers
150 views

Hibernate hql event listener

i create a lot of hibernate event listeners, to catch all database events like load, persist, update, delete etc. All event will be catched but named queries will not be catched by my load event ...
1
vote
2answers
336 views

Joining named queries in JPA

I want to know whether I can join 2 named queries in JPA. As an example I have two following named queries 1 - Get all the active users 2 - get all the users for a given company Is it possible for ...
1
vote
1answer
381 views

Grails named queries

I started to write a simple named query in Grails, but it says missing method on the domain for the named query. Am I doing something wrong? I referred the documentation and found no problem with the ...
1
vote
1answer
225 views

Get list of named queries in NHibernate

I have a dozen or so named queries in my NHibernate project and I want to execute them against a test database in unit tests to make sure the syntax still matches the changing domain/database model. ...
1
vote
1answer
139 views

Deleting orphans with JPA

I have a one-to-one relation where I use CascadeType.PERSIST. This has over time build up a huge amount of child records that has not been deleted, to such an extend that it is reflected in the ...
1
vote
1answer
290 views

NotSupportedException on IQuery's Enumerable when using statelesssession

when trying to use the Enumerable method on a named query, with a Stateless session, as shown in the example at: http://www.nhforge.org/doc/nh/en/#batch-statelesssession i am seeing a ...
1
vote
2answers
2k views

Using a named query in a hbm with import class

In my MSSQL server I have a SQL view called AllFavourite. In order to load the data into my DTO class I have the following in my hbm.xml file... <?xml version="1.0" encoding="utf-8" ?> ...
1
vote
2answers
950 views

JPA setParameter when dealing with “NOT IN (:param)”

I'm trying to set a parameter in my query, for example: select * from Cars where Cars.color NOT IN (:color_params) And when I'm adding the parameter in my JavaClass is like: ... ...
1
vote
2answers
963 views

Table Name Troubles With Hibernate Named Query

I've got the following named query in Hibernate: <sql-query name="CreateLogTable"> CREATE TABLE IF NOT EXISTS :tableName ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT, `url` VARCHAR ...
1
vote
1answer
1k views

Using replace sql function in nHibernate named query

I am using Nhibernate 2.1.0 in my project. I have the an Item class with property Path and the following named query: <hibernate-mapping xmlns='urn:nhibernate-mapping-2.2'> <sql-query ...
1
vote
5answers
6k views

Using Unmapped Class with NHibernate Named Query

I'm using a custom named query with NHibernate which I want to return a collection of Person objects. The Person object is not mapped with an NHibernate mapping which means I'm getting the following ...
1
vote
3answers
4k views

Named queries with nHibernate

I am having a great deal of trouble getting named queries to work with nHibernate. My latest problem is getting the error message "could not execute query" with no additional information. Are there ...
0
votes
1answer
23 views

nHibernate named query returns not all results

I have a few simple named queries with only joins, ant couple subselects. All of them ar working perfectly except one. The problem is, that when i run SQL code in Management Studio, i get 177 results, ...
0
votes
1answer
28 views

JPA find and update strategy

In my JPA implementation, I do a em.find() to select a list of objects and modify these objects.Next, I update these modified objects calling em.merge() inside a transaction ( TX in order to persist ...
0
votes
1answer
41 views

Using Hibernate HQL Named Queries in Grails?

Is there a way to use Hibernate Named Queries in Grails, using HQL? I've been reading about them in the Harnessing Hibernate book, and wondered if there was a way to use them in Grails. Named ...
0
votes
1answer
75 views

How do I create Named Queries in a Separate file

I need to keep the all the named queries in a separate file. For example @javax.persistence.NamedQueries({ @NamedQuery(name = "Employee.findAll", query = "SELECT e FROM Employee e")}) public ...
0
votes
1answer
172 views

How to load a Hibernate 'xxx.hbm.cfg' file in a JPA 2.0 project?

I have just started a Spring Roo application with Hibernate as a JPA2.0 provider. I am using the jars as follows: hibernate-core-3.6.4.Final.jar hibernate-commons-annotations-3.2.0.jar ...
0
votes
1answer
236 views

Mapping Exception: Unable to read XML when externalizing a named native query in JPA 2.0

I have some long queries (text wise) that I am trying to externalize into an orm.xml file for readability and maintainability purposes but I keep getting a mapping exception: Unable to read XML. This ...
0
votes
1answer
61 views

Grails named query

I have two domain classes, Alpha and Beta. class Beta{ String betaName int age } class Alpha{ String name static belongsTo=[creator:Beta] static namedQueries = { alphaByUser{ param ...
0
votes
2answers
54 views

Hibernate Named Query is Null

I have a problem with the hibernate named queries. My Entity: import org.hibernate.annotations.NamedQueries; import org.hibernate.annotations.NamedQuery; import javax.persistence.Entity; ...
0
votes
1answer
147 views

How to map a sql function as named query with Nhibernate's loquacious mapping?

I have replaced all my NHibernate xml mapping files by loquacious mappings (mapping by code). The only thing I can't figure out is if it is possible to define this named query using loquacious ...

1 2