diff --git a/jOOQ-website/src/main/resources/manual-2.5.xml b/jOOQ-website/src/main/resources/manual-2.5.xml
index 08543a86b9..690f35a212 100644
--- a/jOOQ-website/src/main/resources/manual-2.5.xml
+++ b/jOOQ-website/src/main/resources/manual-2.5.xml
@@ -4331,17 +4331,12 @@ create.select(LAST_NAME, COUNT1, COUNT2)
- Unlike JDBC, jOOQ has a lot of knowledge about a SQL query's structure and internals (see the manual's section about
- Even if there are two general types of Query, there are a lot of similarities between JDBC and jOOQ. Just to name a few:
+ Even if there are Query vs. ResultQuery
- Similarities with JDBC
+ Unlike JDBC, jOOQ has a lot of knowledge about a SQL query's structure and internals (see the manual's section about
+ Unlike JDBC's
+ As a
+ Like
+ Many databases support returning several result sets, or cursors, from single queries. An example for this is Sybase ASE's sp_help command: +
++ The correct (and verbose) way to do this with JDBC is as follows: +
+ +
+ As previously discussed in the chapter about
+ Using generics, the resulting structure is immediately clear. +
+