Tagged Questions
The sqlresultsetmapping tag has no wiki summary.
3
votes
1answer
618 views
Result set mapping in Grails / GORM
I want to map the result of a native SQL query to a simple bean in grails, similar to what the @SqlResultSetMapping annotation does.
For example, given a query
select x.foo, y.bar, z.baz from ...
1
vote
3answers
309 views
Efficient way to Handle ResultSet in Java
I want to handle this issue very badly. I have a resultset in java and i am facing the problem of not closing it. I want to get over this issue by closing the resultset after constructing a HashMap ...
1
vote
0answers
194 views
JPA: @SqlResultSetMapping OneToMany problem
I am trying to do some NatveQueries, but I am stuck with @SqlResultSetMapping configuration.
I have those classes:
@Entity
public class LocalUser implements Serializable {
private static final ...
1
vote
1answer
2k views
Reading from multiple tables and populating multiple entities using JPA SqlResultSetMapping
I have been building a JSF application using JPA to access the DB. There are a number of entities.
I want to create a search results screen that shows columns from more than one entity in a table. ...
0
votes
1answer
187 views
JPA native join fetch
It's well known that we can retrieve an entity and all its children in a single JPQL query using join fetch. However, I can't seem to get this working with a native query. I'm getting ...
0
votes
0answers
104 views
Resultset Mapping Returns null, SQL statement doesn't
I have an SQL statement like this:
SELECT generatedresult,sum(size) as count FROM table1_detail AS w WHERE date > '2011.06.01' AND w.l_date < '2011.06.02' GROUP BY category ORDER BY count ...