From 0fcc3cbad90a4da398c7a244a42670bcf4248b29 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Fri, 26 Oct 2012 11:26:44 +0200 Subject: [PATCH] Release 2.6.0 - Documented fetchGroups() additions --- jOOQ-website/src/main/resources/manual-2.6.xml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/jOOQ-website/src/main/resources/manual-2.6.xml b/jOOQ-website/src/main/resources/manual-2.6.xml index 2afe1869a9..38884de142 100644 --- a/jOOQ-website/src/main/resources/manual-2.6.xml +++ b/jOOQ-website/src/main/resources/manual-2.6.xml @@ -5388,11 +5388,14 @@ ResultSet fetchResultSet();]]> Map fetchOneMap(); // Transform your Result object into groups - Map> fetchGroups(Field key); - Map> fetchGroups(Field key, Field value); + Map> fetchGroups(Field key); + Map> fetchGroups(Field key, Field value); + Map> fetchGroups(Field key, Class value); + Map> fetchGroups(Field[] key); + Map> fetchGroups(Field[] key, Class value); // Transform your Records into custom POJOs - List fetchInto(Class type), MappingException; + List fetchInto(Class type); // Transform your records into another table type Result fetchInto(Table table);]]>