This post originated from an RSS feed registered with Java Buzz
by justin cater.
Original Post: Work with the jOOQ DSL
Feed Title: Java Code Geeks
Feed URL: http://feeds.feedburner.com/JavaCodeGeeks
Feed Description: Java 2 Java Developers Resource Center
jOOQ is a DSL (domain-specific language), which mimicks both standard and vendor-specific SQL syntax in a Java API. Being an internal DSL, the Java compiler can verify your SQL queries for syntactic correctness (e.g. correct order of SQL keywords). Having tables and columns as generated Java objects, the compiler can also verify meta data correctness (e.g. correct column names and types).
In this lesson, we will delve into jOOQ DSL and use predicates, statements and build expressions.