The runtime diagnose add on is terrific. My favorite part is actually the JPQL console. I’ve been using the JMX Console to test my JPQL but this is more user friendly.
My only wish is that I could select specific attributes rather than the entire entity. In other words this query works fine:
select e from sample$Customer e
But this query does not:
select e.name from sample$Customer e
The console says “Execution successful” but the Result field does not show content.
Is this the intended functionality?