0
votes
1answer
11 views

Grails Detached Criteria Query and “group by” and “having” clause

In a Grails 2.1 application, I'm having trouble getting a criteria query to behave like some handwritten sql I've got. So-here's some background info: The table is in a reporting db and has the ...
0
votes
2answers
61 views

Is there a cleaner, more Grailsy way to write this query?

I have a couple scenarios where I want to retrieve a single Advertiser and eager fetch most of its object graph. I definitely don't want to do this by default, so I've been searching for the right way ...
0
votes
1answer
82 views

Grails criteria: how to count results from a grouped subquery?

Ok guys I'm finally stuck with GORM Criteria API implementation facing this problem: I've got an Oracle view mapped like this: class MyView implements Serializable { Long idA Long idB ...
0
votes
0answers
34 views

Collection not aware of FetchMode

I have the following domain relationships: A hasMany = [bs: B] B belongsTo = [a:A, c:C] C hasMany = [bs: B] When I do the following query inside a Thread.start {} all is well (I can access the ...
0
votes
0answers
35 views

unable to create grails criteria

I have an entity called EasyAnnouncement as following: class EasyAnnouncement { String name Event event // can be null } and the entity Event looks like: class Event { LocalTime ...
0
votes
0answers
43 views

Criteria Query-Upgrading Grails from 1.3 to 2.1

I'm upgrading an application to Grails 2.1 from 1.3. During the update, Hibernate criteria queries changed how joins are handled by default-from LEFT OUTER to INNER. So, I'm trying to convert a ...
0
votes
1answer
122 views

No such property: INTEGER for class: grails.orm.HibernateCriteriaBuilder

A query is composed as follows: def subQuery = { ge("date", fromDate) } def query = { projections { sqlProjection 'sum(hoursBefore+hoursAfter) as totalHours', 'totalHours', INTEGER ...
0
votes
1answer
116 views

Defining OR Condition with grails criteria api

I have the following domain objects: class User { String name Transaction transaction static constraints = { transaction nullable: true } } class Transaction { ...
0
votes
0answers
183 views

gorm projection in where clause not working

Trying to use projection with where criteria. Without the projections the query works but then once the projections is inserted it fails to work with an error indicating that it could not resolve ...
2
votes
1answer
166 views

grails query on nested attributes without criteria builder

My grails app has the following classes class Person { Address address // other attributes } class Address { String street City city // more attributes } I would like to query ...
2
votes
2answers
165 views

Criteria search

I ran into some problems while trying to count items. Imagine the following domain classes class Book { String name } class Author { String name static hasMany = [books:Book] } How do I get ...
1
vote
1answer
247 views

“in all” restriction for Grails/Hibernate Criteria Query

I need an way to do "in all" criteria queries in Grails/Hibernate. The standard "in" restriction is what I would call an "in any" restriction. By way of example... The Preamble Take a domain class ...
0
votes
1answer
355 views

how to get more than one column using createcrieteria

I am having a domain class and i want to query only some fields. How do i do this using create criteria. I am using this criteria, this works but how do i get another column in output?? def ...
0
votes
1answer
238 views

How to get count of all items in a criteria GORM query

So i have this criteria query that is getting 10 feature articles that have itemchannel objects that are of type 4 and in a channel of id 1 i.e get me top 10 articles which are of type feature and ...
0
votes
2answers
802 views

GORM: ilke and inList combination

In Grails, with DynamicFinder how can we execute a query using ilike along with inList? Or can we use CriteriaBuilder to combine ilike and inList? Thank you!
1
vote
2answers
679 views

Grails GORM - How to get a PagedResultList when using aggregation functions

I'm using GORM from grails 1.2.1. No chance of upgrading at this point. This is not a grails app per se; rather it is a webapp that uses groovy and leverages GORM for easy domain model persistence. I ...
3
votes
2answers
1k views

Can't create grails Criteria query containing a belongsTo relation

I've been trying to create a criteria builder containing a belongsTo relation and have yet to succeed. Consider the following model: class Msg { ... static belongsTo = [user: User] ... } ...
4
votes
2answers
916 views

Query Subset of Columns with Gorm

Suppose I have the following Domain class: class Book { String title String author byte[] largeCoverArtImage } I have a list view where I do not need to display largeCoverArtImage, how can I ...
3
votes
4answers
4k views

Grails: Problem with nested associations in criteria builder

I have a frustrating problem with the criteria builder. I have an application in which one user has one calendar, and a calendar has many entries. Seems straightforward enough, but when I try to get ...
0
votes
1answer
870 views

Query the other way across a one-to-many with Criteria Builder

Lets say I have the following one-to-many relationship: Site has many Users User belongs to one Site I've setup the relationship like this class Site { static hasMany = [users:User] ... } ...