Skip to content

Commit

Permalink
[#5757] Add a comment to the parsingConnection() method
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaseder committed Jun 30, 2017
1 parent 5ddf4a7 commit 35b6b21
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions jOOQ/src/main/java/org/jooq/DSLContext.java
Expand Up @@ -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()}.
* <p>
* 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 <a href=
* "https://github.com/jOOQ/jOOQ/issues/5759">https://github.com/jOOQ/jOOQ/issues/5759</a>.
* <strong>This is experimental functionality:</strong>
* <ul>
* <li>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
* <a href=
* "https://github.com/jOOQ/jOOQ/issues/5759">https://github.com/jOOQ/jOOQ/issues/5759</a>.</li>
* <li>Batching statements is currently not supported. See also <a href=
* "https://github.com/jOOQ/jOOQ/issues/5757">https://github.com/jOOQ/jOOQ/issues/5757</a>.</li>
* </ul>
*/
Connection parsingConnection();

Expand Down

0 comments on commit 35b6b21

Please sign in to comment.