[jOOQ/jOOQ#9461] Add @PlainSQL annotation to DSLContext#batch() methods

This commit is contained in:
Knut Wannheden 2019-10-30 06:49:42 +01:00
parent b52ab14560
commit 98df4ec42f

View File

@ -8017,6 +8017,7 @@ public interface DSLContext extends Scope , AutoCloseable {
* @see java.sql.Statement#executeBatch()
*/
@Support
@PlainSQL
Batch batch(String... queries);
/**
@ -8084,6 +8085,7 @@ public interface DSLContext extends Scope , AutoCloseable {
* @see java.sql.Statement#executeBatch()
*/
@Support
@PlainSQL
BatchBindStep batch(String sql);
/**
@ -8115,6 +8117,7 @@ public interface DSLContext extends Scope , AutoCloseable {
* @see java.sql.Statement#executeBatch()
*/
@Support
@PlainSQL
Batch batch(String sql, Object[]... bindings);
/**