Is there any client (like: pgadmin3, Oracle SQL Developer, Mysql Workbench) to query in JPQL?
I have a project that uses jpa, and I need to debug the generated jpql's.
I've seen that Squirrel does this, but for HQL.
Is there any client (like: pgadmin3, Oracle SQL Developer, Mysql Workbench) to query in JPQL?
I have a project that uses jpa, and I need to debug the generated jpql's.
I've seen that Squirrel does this, but for HQL.
There's a way you can run your JPQL without needing software for it: link
You add a class that will create the JPA context in memory and ask that the JPQL be tested at a prompt (you can see the code in the post above).
If your company has a condition, ide IDEA Intellij has this function natively.