What does JPA EntityManager.getSingleResult() return for a COUNT query?

后端 未结 8 1120
北海茫月
北海茫月 2021-02-01 02:43

What does EntityManager.getSingleResult() return for a COUNT query?

So.. what is the precise runtime type of foo?

Object foo = em.createQuer         


        
8条回答
  •  甜味超标
    2021-02-01 03:31

    Obviously, a number which is the count from the query:) Its type by specification is Long.

提交回复
热议问题