From b5ce649b160c519b7f037512f6dfe5b10bc1a754 Mon Sep 17 00:00:00 2001 From: lukaseder Date: Thu, 9 Apr 2015 18:59:37 +0200 Subject: [PATCH] [#4185] ExecuteType.BATCH JavaDoc: not yet supported --- jOOQ/src/main/java/org/jooq/ExecuteType.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/jOOQ/src/main/java/org/jooq/ExecuteType.java b/jOOQ/src/main/java/org/jooq/ExecuteType.java index 013ec9d85d..2fe1eb9282 100644 --- a/jOOQ/src/main/java/org/jooq/ExecuteType.java +++ b/jOOQ/src/main/java/org/jooq/ExecuteType.java @@ -46,7 +46,7 @@ package org.jooq; public enum ExecuteType { /** - * A SELECT query is being executed + * A SELECT query is being executed. *

* This may also apply to plain SQL WITH .. SELECT queries * (selections with common table expressions), FETCH queries @@ -56,7 +56,7 @@ public enum ExecuteType { /** * An INSERT, UPDATE, DELETE, - * MERGE query is being executed + * MERGE query is being executed. *

* This may also apply to plain SQL REPLACE, * UPSERT and other vendor-specific queries. @@ -64,24 +64,24 @@ public enum ExecuteType { WRITE, /** - * A DDL statement is being executed + * A DDL statement is being executed. *

* Currently, this only applies to TRUNCATE statements */ DDL, /** - * A batch statement is being executed (not yet supported) + * A batch statement is being executed. */ BATCH, /** - * A routine (stored procedure or function) is being executed + * A routine (stored procedure or function) is being executed. */ ROUTINE, /** - * An other (unknown) type of database interaction is being executed + * An other (unknown) type of database interaction is being executed. */ OTHER, }