JPA query software

2

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.

    
asked by anonymous 05.05.2014 / 16:47

1 answer

1

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.

    
07.05.2014 / 17:50