From 35b6b21c88befeeb8a188b6cffeaeaf54368440f Mon Sep 17 00:00:00 2001 From: lukaseder Date: Fri, 30 Jun 2017 17:16:42 +0200 Subject: [PATCH] [#5757] Add a comment to the parsingConnection() method --- jOOQ/src/main/java/org/jooq/DSLContext.java | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/jOOQ/src/main/java/org/jooq/DSLContext.java b/jOOQ/src/main/java/org/jooq/DSLContext.java index 43d0625cf2..e09beb8773 100644 --- a/jOOQ/src/main/java/org/jooq/DSLContext.java +++ b/jOOQ/src/main/java/org/jooq/DSLContext.java @@ -198,11 +198,16 @@ public interface DSLContext extends Scope , AutoCloseable { * has been obtained from {@link ConnectionProvider#acquire()} and must be * released by calling {@link Connection#close()}. *

- * This is experimental functionality. While this works well for static - * {@link Statement} executions, bind variables and their position - * calculation might cause issues when the generated SQL output involves - * more complex SQL transformation. See also https://github.com/jOOQ/jOOQ/issues/5759. + * This is experimental functionality: + *

*/ Connection parsingConnection();