Are there any modeling tools that can visually generate jpa or sql queries?
Posted
by Shervin
on Stack Overflow
See other posts from Stack Overflow
or by Shervin
Published on 2010-04-11T09:27:41Z
Indexed on
2010/04/11
9:33 UTC
Read the original article
Hit count: 289
Does anyone know of a tool like PowerArchitect or SquirrelSQL or maybe eclipse plugin that lets you also generate jpa/sql queries?
Imagine you choosing your database, or your entity beans, and the modeling would reverse engineer your database/entity model, so that you could visually just choose the columns you wanted to select, and it would generate jpa or sql queries for you.
For instance choosing A.b
and X.y
would generate something like this:
select a.b, x.y from A a, X x join ......
© Stack Overflow or respective owner