Met JPA moet je het volgende doen
int num = ((Number)this.entityManager.createNativeQuery("select count(*) from your_table_name")
.getSingleResult()).intValue();
bewerkt:
String name = this.entityManager.createNativeQuery("select t.name from your_table_name t limit 1").getSingleResult().toString();
je krijgt een telling met num object
Ik hoop dat het je zal helpen.