diff --git a/jOOQ-website/src/main/resources/manual-3.1.xml b/jOOQ-website/src/main/resources/manual-3.1.xml index 7cdcad82be..416511fa23 100644 --- a/jOOQ-website/src/main/resources/manual-3.1.xml +++ b/jOOQ-website/src/main/resources/manual-3.1.xml @@ -1367,6 +1367,7 @@ DSLContext create = DSL.using(connection, dialect);]]>
+ Your custom RecordMapper types can be used automatically through jOOQ's
See also the manual's section about the
- If you're using jOOQ's
+ In the previous sections we have seen how to create RecordMapper every time you need one. For this, you can provide jOOQ's
+ The above is a very simple example showing that you will have complete flexibility in how to override jOOQ's record to POJO mapping mechanisms. +
+ ++ If you're looking into a generic, third-party mapping utility, have a look at ModelMapper, or Orika Mapper, which can both be easily integrated with jOOQ. +
++ An example of why you might want to manually set a ResultSet's concurrency flag to something non-default is given here: +
+ +
+ In the above example, your custom Record from the JDBC ResultSet. With the concurrency being set to ResultSet.CONCUR_UPDATABLE, you can now modify the database cursor through the standard JDBC ResultSet API.
+