diff --git a/jOOQ/src/main/java/org/jooq/Configuration.java b/jOOQ/src/main/java/org/jooq/Configuration.java index 3892e5c6c2..11fe87858b 100644 --- a/jOOQ/src/main/java/org/jooq/Configuration.java +++ b/jOOQ/src/main/java/org/jooq/Configuration.java @@ -86,7 +86,7 @@ import org.jooq.tools.StopWatchListener; *
- * There must not be any binding variables contained in the SQL + * There must not be any bind variables contained in the SQL *
* Use this method, when you want to take advantage of the many ways to * fetch results in jOOQ, using {@link ResultQuery}. Some examples: @@ -2300,7 +2300,7 @@ public interface DSLContext extends Scope , AutoCloseable { /** * Create a new query holding plain SQL. *
- * There must not be any binding variables contained in the SQL + * There must not be any bind variables contained in the SQL *
* Use this method, when you want to take advantage of the many ways to
* fetch results in jOOQ, using {@link ResultQuery}. Some examples:
diff --git a/jOOQ/src/main/java/org/jooq/ExecuteListener.java b/jOOQ/src/main/java/org/jooq/ExecuteListener.java
index 621d3f279d..5517dfaca1 100644
--- a/jOOQ/src/main/java/org/jooq/ExecuteListener.java
+++ b/jOOQ/src/main/java/org/jooq/ExecuteListener.java
@@ -425,7 +425,7 @@ public interface ExecuteListener extends EventListener, Serializable {
void prepareEnd(ExecuteContext ctx);
/**
- * Called before binding variables to the PreparedStatement
+ * Called before bind variables to the PreparedStatement
*
* Available attributes from ExecuteContext:
*
PreparedStatement
+ * Called after bind variables to the PreparedStatement
*
* Available attributes from ExecuteContext:
*
* A plain SQL QueryPart is a QueryPart that can
* contain user-defined plain SQL, because sometimes it is easier to express
- * things directly in SQL. There must be as many binding variables contained
+ * things directly in SQL. There must be as many bind variables contained
* in the SQL, as passed in the bindings parameter
*
* This overload takes a set of bind value arguments which are replaced our @@ -9192,7 +9192,7 @@ public class DSL { *
* A plain SQL QueryPart is a QueryPart that can
* contain user-defined plain SQL, because sometimes it is easier to express
- * things directly in SQL. There must be as many binding variables contained
+ * things directly in SQL. There must be as many bind variables contained
* in the SQL, as passed in the bindings parameter
*
* NOTE: When inserting plain SQL into jOOQ objects, you must @@ -9328,7 +9328,7 @@ public class DSL { /** * Create a new query holding plain SQL. *
- * There must not be any binding variables contained in the SQL + * There must not be any bind variables contained in the SQL *
* Use this method, when you want to take advantage of the many ways to * fetch results in jOOQ, using {@link ResultQuery}. Some examples: @@ -9376,7 +9376,7 @@ public class DSL { /** * Create a new query holding plain SQL. *
- * There must not be any binding variables contained in the SQL + * There must not be any bind variables contained in the SQL *
* Use this method, when you want to take advantage of the many ways to * fetch results in jOOQ, using {@link ResultQuery}. Some examples: @@ -9568,7 +9568,7 @@ public class DSL { * A plain SQL table is a table that can contain user-defined plain SQL, * because sometimes it is easier to express things directly in SQL, for * instance complex, but static subqueries or tables from different schemas. - * There must be as many binding variables contained in the SQL, as passed + * There must be as many bind variables contained in the SQL, as passed * in the bindings parameter *
* Example @@ -10144,7 +10144,7 @@ public class DSL { /** * Create a new condition holding plain SQL. *
- * There must not be any binding variables contained in the SQL. + * There must not be any bind variables contained in the SQL. *
* Example: *
@@ -10169,7 +10169,7 @@ public class DSL { /** * Create a new condition holding plain SQL. *
- * There must not be any binding variables contained in the SQL. + * There must not be any bind variables contained in the SQL. *
* Example: *
@@ -10194,7 +10194,7 @@ public class DSL { /** * Create a new condition holding plain SQL. *
- * There must be as many binding variables contained in the SQL, as passed + * There must be as many bind variables contained in the SQL, as passed * in the bindings parameter *
* Example:
diff --git a/jOOQ/src/main/java/org/jooq/impl/DefaultRenderContext.java b/jOOQ/src/main/java/org/jooq/impl/DefaultRenderContext.java
index 5e96b915a7..3b68e40e30 100644
--- a/jOOQ/src/main/java/org/jooq/impl/DefaultRenderContext.java
+++ b/jOOQ/src/main/java/org/jooq/impl/DefaultRenderContext.java
@@ -91,6 +91,7 @@ class DefaultRenderContext extends AbstractContext