在Grails SQL查询结果中包含列名称

时间:2013-09-16 23:34:50

标签: sql hibernate grails gorm

我的查询看起来像这样......

        def data = session.createSQLQuery("""SELECT
  a.id AS media_id,
  a.uuid,
  a.date_created,
  a.last_updated,
  a.device_date_time,
  a.ex_time,
  a.ex_source,
  a.sequence,
  a.time_zone,
  a.time_zone_offset,
  a.media_type,
  a.size_in_bytes,
  a.orientation,
  a.width,
  a.height,
  a.duration,
  b.id           AS app_user_record_id,
  b.app_user_identifier,
  b.application_id,
  b.date_created AS app_user_record_date_created,
  b.last_updated AS app_user_record_last_updated,
  b.instance_id,
  b.user_uuid
FROM media a, app_user_record b
WHERE a.uuid = b.user_uuid
LIMIT :firstResult, :maxResults """)
                .setInteger("firstResult", cmd.firstResult)
                .setInteger("maxResults", cmd.maxResults)
                .list()

问题是.list方法返回一个没有列名的数组。有没有人知道从Grails本机sql查询中包含/添加列名的方法。我显然可以将结果转换为地图并自己对列名进行硬编码。

1 个答案:

答案 0 :(得分:4)

使用setResultTransformer(Criteria.ALIAS_TO_ENTITY_MAP)进行查询。这将产生一个条目图。

import org.hibernate.Criteria

def query = """Your query"""
def data = session.createSQLQuery(query)
                .setInteger("firstResult", cmd.firstResult)
                .setInteger("maxResults", cmd.maxResults)
                .setResultTransformer(Criteria.ALIAS_TO_ENTITY_MAP)
                .list()

data.each{println it.UUID}

我对它进行了测试,并意识到之前我曾使用列号来获取每个字段而不是列名。

注意
键是大写的。因此ex_source在结果图中为EX_SOURCE