Is there any good dynamic SQL builder library in Java?

Vladislav Rastrusny picture Vladislav Rastrusny · Apr 11, 2011 · Viewed 121.7k times · Source

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');

Answer

ponzao picture ponzao · Apr 11, 2011

Querydsl and jOOQ are two popular choices.