给定一个包含以下列的简单表(example_table
):id, first_name, last_name
是否可以通过执行JPA本机sql查询em.createNativeQuery("select * from example_table")
来检索列名和数据?在查询上运行getResultList()
仅返回数据。我还能如何检索列名?
答案 0 :(得分:0)
试试这个
em.unwrap(Session.class).getDescriptor(Currency.class).getFields()