In the JPA, I defined a native sql which will return String,
@NamedNativeQuery(name = \"alert\",
query = \" select distinct c.accountId from account c \",
@SqlResultSetMappings({
@SqlResultSetMapping(name = "alertMapping", columns = {
@ColumnResult(name = "accountId")})
})
@NamedNativeQuery(name = "alert",
query = " select distinct c.accountId from account c ",
resultSetMapping = "alertMapping")
Usage:
EntityManager em = ...... / injected / etc
TypedQuery query = em.createNamedQuery("alert", String.class);
List accountIds = query.getResultList();
(unchecked syntax, but I hope the basic idea comes through)
For NamedNativeQueries you can only use resultClass when the result actually maps to an Entity. It's also possible to not specify a result mapping, in which case you'd get a List
of Object[] back. Each element of the list would be one record, and you'd have to explicitly cast each Object to the type you wanted. Hm, the last part might only be available to NativeQueries and not Named - sorry unsure at the moment.