Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to map the result of a native SQL query to a collection of Grails domain class instances?

share|improve this question

3 Answers

up vote 8 down vote accepted
import com.acme.domain.*

def sessionFactory
sessionFactory = ctx.sessionFactory  // this only necessary if your are working with the Grails console/shell
def session = sessionFactory.currentSession 

def query = session.createSQLQuery("select f.* from Foo where f.id = :filter)) order by f.name");
query.addEntity(com.acme.domain.Foo.class); // this defines the result type of the query
query.setInteger("filter", 88);
query.list()*.name;
share|improve this answer
this was very helpfull! – Topera May 17 '11 at 21:44
Thanks. It helped me too... – Jay Chandran Sep 14 '11 at 6:07

Alternatively using Groovy SQL in the Grails app

import  groovy.sql.Sql

class TestQService{

    def dataSource  //Auto Injected

    def getBanksForId(int bankid){

        def sql = Sql.newInstance(dataSource)

        def rows = sql.rows(""" Select BnkCode , BnkName from Bank where BnkId = ?""" , [bankid]) 

        rows.collect{
            new Bank(it)
        }

    }


    class Bank{

        String BnkCode
        String BnkName

        }

}
share|improve this answer

You could map it yourself without too much trouble. Alternatively if using HQL, you could use select new map() and then take query.list().collect { new MyDomainObject(it) } to bind the parameters by hand.

share|improve this answer
True but I'd suppose this would be significantly slower than Hibernate's heavily optimized code. – Oliver Weichhold Jan 20 '10 at 1:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.