diff --git a/jOOQ/src/main/java/org/jooq/impl/DSL.java b/jOOQ/src/main/java/org/jooq/impl/DSL.java
index bca69c21c6..6646f01ece 100644
--- a/jOOQ/src/main/java/org/jooq/impl/DSL.java
+++ b/jOOQ/src/main/java/org/jooq/impl/DSL.java
@@ -11200,6 +11200,50 @@ public class DSL {
// XXX Bind values
// -------------------------------------------------------------------------
+ /**
+ * Create an unnamed parameter with a generic type ({@link Object} /
+ * {@link SQLDataType#OTHER}) and no initial value.
+ *
+ * Try to avoid this method when using any of these databases, as these
+ * databases may have trouble inferring the type of the bind value. Use
+ * typed named parameters instead, using {@link #param(Class)} or
+ * {@link #param(DataType)}
+ *