Go to file
2013-05-11 10:35:14 +02:00
jOOQ Refactored some reusable code 2013-05-11 10:30:46 +02:00
jOOQ-codegen [#2413] Suppress warnings in generated code (@SuppressWarnings("all") 2013-05-03 11:55:56 +02:00
jOOQ-codegen-maven
jOOQ-codegen-maven-example [#2413] Generate global object references, too 2013-05-03 11:41:13 +02:00
jOOQ-console
jOOQ-liquibase
jOOQ-meta [#2449] JDBCDatabase doesn't use DataType.length(), precision(), and 2013-05-09 14:58:06 +02:00
jOOQ-release
jOOQ-scala
jOOQ-test Added another test case 2013-05-11 10:35:14 +02:00
jOOQ-tools [#1846] Added more integration tests related to Record.changed() and 2013-05-10 18:16:43 +02:00
jOOQ-website [#2432] Manual refers to a package-private DefaultConfiguration 2013-05-03 09:48:05 +02:00
.gitignore
authors.txt
LICENSE
pom.xml [#2413] Suppress warnings in generated code (@SuppressWarnings("all") 2013-05-03 11:55:56 +02:00
README.md

What's jOOQ

jOOQ stands for Java Object Oriented Querying. It combines these essential features:

  • Code Generation: jOOQ generates a simple Java representation of your database schema. Every table, view, stored procedure, enum, UDT is a class.

  • Active records: jOOQ implements an easy-to-use active record pattern. It is not an OR-mapper, but provides a 1:1 mapping between tables/views and classes. Between columns and members.

  • Typesafe SQL: jOOQ allows for writing compile-time typesafe querying using its built-in DSL.

  • SQL standard: jOOQ supports all standard SQL language features including the more complex UNION's, nested SELECTs, joins, aliasing.

  • Vendor-specific feature support: jOOQ encourages the use of vendor-specific extensions such as stored procedures, UDT's and ARRAY's, recursive queries, and many more.

For more details please visit jooq.org.

Follow jOOQ on Twitter and on Wordpress.