diff --git a/jOOQ-website/index.php b/jOOQ-website/index.php index 146f78e03d..aa64fb8bc1 100644 --- a/jOOQ-website/index.php +++ b/jOOQ-website/index.php @@ -1,10 +1,10 @@ -
-create.select(FIRST_NAME, LAST_NAME, create.count())
+create.select(FIRST_NAME, LAST_NAME, count())
.from(AUTHOR)
.join(BOOK).on(Author.ID.equal(Book.AUTHOR_ID))
.where(LANGUAGE.equal("DE"))
- .and(PUBLISHED.greaterThan(parseDate('2008-01-01')))
+ .and(PUBLISHED.greaterThan(parseDate("2008-01-01")))
.groupBy(FIRST_NAME, LAST_NAME)
- .having(create.count().greaterThan(5))
+ .having(count().greaterThan(5))
.orderBy(LAST_NAME.asc().nullsFirst())
.limit(2)
.offset(1)
@@ -67,10 +67,10 @@ create.select(FIRST_NAME, LAST_NAME, create.count())
.of(FIRST_NAME, LAST_NAME)jOOQ stands for Java Object Oriented Querying. It combines these essential features:
- +On the other hand, many people like the ease of use of Hibernate or other products, when it comes to simply persisting any domain model in any database. You should not use jOOQ...
Every RDMBS out there has its own little specialties. - jOOQ considers those specialties as much as possible, while trying to - standardise the behaviour in jOOQ. In order to increase the quality of jOOQ, - some 70 unit tests are run for syntax and variable binding verification, - as well as some 130 integration tests with an overall of around 900 queries for any +
Every RDMBS out there has its own little specialties. + jOOQ considers those specialties as much as possible, while trying to + standardise the behaviour in jOOQ. In order to increase the quality of jOOQ, + some 70 unit tests are run for syntax and variable binding verification, + as well as some 130 integration tests with an overall of around 900 queries for any of these databases:
jOOQ runs with Java 1.6+
+jOOQ runs with Java 1.6+
jOOQ is licensed under the Apache Software License 2.0
- - +jOOQ is licensed under the Apache Software License 2.0
+ +YourKit is kindly supporting open source projects with its full-featured Java Profiler. YourKit, LLC is the creator of innovative @@ -169,6 +169,6 @@ look at YourKit's leading software products: and YourKit .NET Profiler.
- \ No newline at end of file