diff --git a/jOOQ-website/src/main/resources/manual-3.0.xml b/jOOQ-website/src/main/resources/manual-3.0.xml index 373da0a0d3..3cb46cf7f6 100644 --- a/jOOQ-website/src/main/resources/manual-3.0.xml +++ b/jOOQ-website/src/main/resources/manual-3.0.xml @@ -1664,6 +1664,21 @@ Select select2 = create.selectOne();]]> select1 = create.selectDistinct(BOOK.TITLE);]]> +

SELECT *

+

+ jOOQ does not explicitly support the asterisk operator in projections. However, you can omit the projection as in these examples: +

+ + +

Typesafe projections with degree up to {max-row-degree}

Since jOOQ 3.0, and up to degree {max-row-degree} are now generically typesafe. This is reflected by an overloaded SELECT (and SELECT DISTINCT) API in both Factory and Executor. An extract from Factory: