Ayusman
Ayusman

Reputation: 8729

Tool to validate JPA queries

All, is there a tool like an SQL client where I can validate a JPA query I get from my system logs/consoles?

Meaning, as I can validate a SQL query using a SQL client like Oracle SQL+ or SQL server client.

Upvotes: 1

Views: 9613

Answers (2)

Marco
Marco

Reputation: 354

Vestigo is an Eclipse plug-in (or a stand-alone program, if you prefer that) having code-assist and -highlighting. You can execute your query on any JPA (or JDO) datastore.

Upvotes: 2

Tristan
Tristan

Reputation: 9141

Sure, you can do it with Hibernate Tools Eclipse plugin (it's about HQL, but it can manage JPQL).

Upvotes: 1

Related Questions