What are Relational Objects?

86 Views Asked by At

I am referring to this http://www.tutorialspoint.com/jpa/jpa_architecture.htm for learning JPA ,Here a table is given enter image description here

In query row what is relational object they are referring to? Are they the objects of entity classes which I am making or something else.

1

There are 1 best solutions below

6
On BEST ANSWER

A Query indeed returns instances of entities, but it can also simply return arrays (i.e. rows), or lists of objects that are not entities.