Anyone knows some good SQL builder library for Java like Squiggle (not maintained anymore it seems). Preferably, a project in active development.

Preferably with syntax like Zend_Db_Select, something that will allow to make a query like

String query = db.select().from('products').order('product_id');
link|improve this question

feedback

4 Answers

up vote 6 down vote accepted

Querydsl and jOOQ are two popular choices.

Note: I work for the company behind Querydsl.

link|improve this answer
Which one do you use? :) – FractalizeR Apr 11 '11 at 20:54
3  
JOOQ is maybe a better choice for hardcore SQL development, but Querydsl has a simpler API and supports also other backends (JPA, JDO, Lucene, Mongodb etc.); I am also in the company behind Querydsl – Timo Westkämper Apr 12 '11 at 5:55
We use Querydsl SQL in a few of our in house projects. I have no personal experience of jooq but I have heard that it is quite ok. – ponzao Apr 12 '11 at 7:32
feedback

SQL Construction Kit is a very flexilble, no dependency framework. Development recently moved from code.google.com to github. It is also available from Maven Central Repository via Sonatype.

link|improve this answer
It's a pity they support only mssql, oracle and sql99. No mysql, firebird etc. Also no documentation visible... – FractalizeR Apr 11 '11 at 18:06
1  
SQL99 is a generic implementation that will should work with any database. If you add support for specific databases, and sent a pull request, I can guarantee it will get into the mainline code base. – Jarrod Roberson Apr 11 '11 at 19:43
Thanks. Can you make some examples, please? Don't want to dig into the code just to find out how it works at all. – FractalizeR Apr 11 '11 at 20:53
3  
about SQL99: I could tell you one thousand reasons why that should be true. And two thousand reasons, why it isn't... Take a simple select 1, which also comes in at least these flavours: select 1 from dual, select 1 from sysibm.dual, select 1 from sysibm.sysdummy1, select 1 from information_schema.system_users... Oh don't get me started :-) – Lukas Eder Apr 11 '11 at 21:48
feedback

I can recommend jOOQ. It provides a lot of great features, also a intuitive DSL for SQL and a extremly customable reverse-engineering approach.

jOOQ effectively combines complex SQL, typesafety, source code generation, active records, stored procedures, advanced data types, and Java in a fluent, intuitive DSL.

link|improve this answer
Do you use it? How do you find it? – FractalizeR Apr 11 '11 at 20:53
3  
I use it to generate custom source code from DDL. It's working great! – codevour Apr 12 '11 at 7:30
feedback

Hibernate Criteria API (not plain SQL though, but very powerful and in active development):

List sales = session.createCriteria(Sale.class)
         .add(Expression.ge("date",startDate);
         .add(Expression.le("date",endDate);
         .addOrder( Order.asc("date") )
         .setFirstResult(0)
         .setMaxResults(10)
         .list();
link|improve this answer
1  
The problem is that it doesn't map to SQL as I understand, right? – FractalizeR Apr 11 '11 at 18:57
2  
this doesn't generate SQL and is a nightmare to debug when it doesn't follow the rule of least astonishment ( doesn't work as expected ) – Jarrod Roberson Apr 11 '11 at 19:47
It does generate SQL (at the end) and it surprises no one. Benefit -- it is portable across databases. – Vladimir Dyuzhev Apr 12 '11 at 1:30
+1 Upvoted again to level up. I don't know why this was downvoted. After all, it's become the standard way of doing this with JPA, even if it's a bit verbose... – Lukas Eder Apr 12 '11 at 5:53
1  
What is the level of query complexity that you achieved to reach with the JPA Criteria API, without making the query utterly unreadable? Do you have an example of a nested select in an IN / EXISTS clause, or of a self-join using aliases for the Sale entity, etc? I'm curious – Lukas Eder Apr 12 '11 at 5:54
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.