PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Como obter o ID de retorno no JPA após a inserção da consulta nativa


OK, isso foi fácil. Acabei de usar q.getSingleResults() e funcionou bem!
Query q = em.createNativeQuery(sql);
BigInteger biid = (BigInteger) q.getSingleResult();
long id = biid.longValue();