diff --git a/jOOQ-scala/src/test/scala/org/jooq/scala/example/Test.scala b/jOOQ-scala/src/test/scala/org/jooq/scala/example/Test.scala
index e39bb06509..6fa8f66008 100644
--- a/jOOQ-scala/src/test/scala/org/jooq/scala/example/Test.scala
+++ b/jOOQ-scala/src/test/scala/org/jooq/scala/example/Test.scala
@@ -58,7 +58,7 @@ object Test {
T_BOOK.TITLE || " abc" || " xy")
from T_BOOK
leftOuterJoin (
- f select ( x.ID, x.YEAR_OF_BIRTH)
+ f select (x.ID, x.YEAR_OF_BIRTH)
from x
limit 1
asTable x.getName()
diff --git a/jOOQ-website/src/main/resources/html-util.xsl b/jOOQ-website/src/main/resources/html-util.xsl
index 0db9f7370c..0abf5dd679 100644
--- a/jOOQ-website/src/main/resources/html-util.xsl
+++ b/jOOQ-website/src/main/resources/html-util.xsl
@@ -180,6 +180,11 @@
+ As any other library, jOOQ can be easily used in Scala, taking advantage of the many Scala language features such as for example:
+
+ But jOOQ also leverages other useful Scala features, such as
+
+ A short example jOOQ application in Scala might look like this:
+
+ For more details about jOOQ's Scala integration, please refer to the manual's section about
+ jOOQ-Scala is a maven module used for leveraging some advanced Scala features for those users that wish to use jOOQ with Scala.
+
+ The most obvious Scala feature to use in jOOQ are implicit defs for implicit conversions in order to enhance the
+ The following depicts a trait which wraps all fields:
+
+ The following depicts a trait which wraps numeric fields:
+
+ An example query using such overloaded operators would then look like this:
+
+ This feature is still being experimented with. With Scala Macros, it might be possible to inline a true SQL dialect into the Scala syntax, backed by the jOOQ API. Stay tuned!
+
+
+
+
+
+
+
+
+ Using Scala's implicit defs to allow for operator overloading
+ Scala 2.10 Macros
+