diff --git a/jOOQ/src/main/java/org/jooq/DSLContext.java b/jOOQ/src/main/java/org/jooq/DSLContext.java index b5a9dcf9cc..32982c78ac 100644 --- a/jOOQ/src/main/java/org/jooq/DSLContext.java +++ b/jOOQ/src/main/java/org/jooq/DSLContext.java @@ -499,7 +499,11 @@ public interface DSLContext extends Scope , AutoCloseable { *
{@link RenderContext#qualify()} == true{@link RenderContext#subquery()} == falseDSLContext.
+ * Get a new {@link BindContext} for the context of this
+ * DSLContext.
* * This will return an initialised bind context as such: *
{@link RenderContext#declareFields()} == false{@link RenderContext#declareTables()} == false{@link RenderContext#declareFields()} == false{@link RenderContext#declareTables()} == false* BindContext for JOOQ INTERNAL USE only. Avoid referencing it directly + * + * @deprecated - [#6280] - 3.10 - Do not reuse this method. It will be + * completely internal with jOOQ 4.0 */ + @Deprecated BindContext bindContext(PreparedStatement stmt); /**