diff --git a/jOOQ/src/main/java/org/jooq/CreateIndexWhereStep.java b/jOOQ/src/main/java/org/jooq/CreateIndexWhereStep.java index 9714a990a3..ee2938e17e 100644 --- a/jOOQ/src/main/java/org/jooq/CreateIndexWhereStep.java +++ b/jOOQ/src/main/java/org/jooq/CreateIndexWhereStep.java @@ -100,6 +100,11 @@ public interface CreateIndexWhereStep extends CreateIndexFinalStep { /** * Add the WHERE clause to the CREATE INDEX statement. +

+ NOTE: When inserting plain SQL into jOOQ objects, you must + guarantee syntax integrity. You may also create the possibility of + malicious SQL injection. Be sure to properly use bind variables and/or + escape literals when concatenated into SQL clauses! * * @see SQL */ @@ -110,6 +115,11 @@ public interface CreateIndexWhereStep extends CreateIndexFinalStep { /** * Add the WHERE clause to the CREATE INDEX statement. +

+ NOTE: When inserting plain SQL into jOOQ objects, you must + guarantee syntax integrity. You may also create the possibility of + malicious SQL injection. Be sure to properly use bind variables and/or + escape literals when concatenated into SQL clauses! * * @see SQL */ @@ -120,6 +130,11 @@ public interface CreateIndexWhereStep extends CreateIndexFinalStep { /** * Add the WHERE clause to the CREATE INDEX statement. +

+ NOTE: When inserting plain SQL into jOOQ objects, you must + guarantee syntax integrity. You may also create the possibility of + malicious SQL injection. Be sure to properly use bind variables and/or + escape literals when concatenated into SQL clauses! * * @see SQL */ @@ -130,6 +145,11 @@ public interface CreateIndexWhereStep extends CreateIndexFinalStep { /** * Add the WHERE clause to the CREATE INDEX statement. +

+ NOTE: When inserting plain SQL into jOOQ objects, you must + guarantee syntax integrity. You may also create the possibility of + malicious SQL injection. Be sure to properly use bind variables and/or + escape literals when concatenated into SQL clauses! * * @see SQL */ diff --git a/jOOQ/src/main/java/org/jooq/CreateTableStorageStep.java b/jOOQ/src/main/java/org/jooq/CreateTableStorageStep.java index 4478c05504..930c18d8f0 100644 --- a/jOOQ/src/main/java/org/jooq/CreateTableStorageStep.java +++ b/jOOQ/src/main/java/org/jooq/CreateTableStorageStep.java @@ -72,6 +72,11 @@ public interface CreateTableStorageStep extends CreateTableFinalStep { /** * Add the STORAGE clause to the CREATE TABLE statement. +

+ NOTE: When inserting plain SQL into jOOQ objects, you must + guarantee syntax integrity. You may also create the possibility of + malicious SQL injection. Be sure to properly use bind variables and/or + escape literals when concatenated into SQL clauses! *

* Add vendor-specific storage clauses to the CREATE TABLE * statement. @@ -112,6 +117,11 @@ public interface CreateTableStorageStep extends CreateTableFinalStep { /** * Add the STORAGE clause to the CREATE TABLE statement. +

+ NOTE: When inserting plain SQL into jOOQ objects, you must + guarantee syntax integrity. You may also create the possibility of + malicious SQL injection. Be sure to properly use bind variables and/or + escape literals when concatenated into SQL clauses! *

* Add vendor-specific storage clauses to the CREATE TABLE * statement. @@ -152,6 +162,11 @@ public interface CreateTableStorageStep extends CreateTableFinalStep { /** * Add the STORAGE clause to the CREATE TABLE statement. +

+ NOTE: When inserting plain SQL into jOOQ objects, you must + guarantee syntax integrity. You may also create the possibility of + malicious SQL injection. Be sure to properly use bind variables and/or + escape literals when concatenated into SQL clauses! *

* Add vendor-specific storage clauses to the CREATE TABLE * statement. @@ -192,6 +207,11 @@ public interface CreateTableStorageStep extends CreateTableFinalStep { /** * Add the STORAGE clause to the CREATE TABLE statement. +

+ NOTE: When inserting plain SQL into jOOQ objects, you must + guarantee syntax integrity. You may also create the possibility of + malicious SQL injection. Be sure to properly use bind variables and/or + escape literals when concatenated into SQL clauses! *

* Add vendor-specific storage clauses to the CREATE TABLE * statement. diff --git a/jOOQ/src/main/java/org/jooq/CreateTriggerWhenStep.java b/jOOQ/src/main/java/org/jooq/CreateTriggerWhenStep.java index 4f774bc01a..28e5798808 100644 --- a/jOOQ/src/main/java/org/jooq/CreateTriggerWhenStep.java +++ b/jOOQ/src/main/java/org/jooq/CreateTriggerWhenStep.java @@ -123,6 +123,26 @@ package org.jooq; + + + + + + + + + + + + + + + + + + + + diff --git a/jOOQ/src/main/java/org/jooq/CreateViewAsStep.java b/jOOQ/src/main/java/org/jooq/CreateViewAsStep.java index fd7cd637da..3e9278d1e5 100644 --- a/jOOQ/src/main/java/org/jooq/CreateViewAsStep.java +++ b/jOOQ/src/main/java/org/jooq/CreateViewAsStep.java @@ -79,6 +79,11 @@ public interface CreateViewAsStep { /** * Add the AS clause to the CREATE VIEW statement. +

+ NOTE: When inserting plain SQL into jOOQ objects, you must + guarantee syntax integrity. You may also create the possibility of + malicious SQL injection. Be sure to properly use bind variables and/or + escape literals when concatenated into SQL clauses! * * @see SQL */ @@ -89,6 +94,11 @@ public interface CreateViewAsStep { /** * Add the AS clause to the CREATE VIEW statement. +

+ NOTE: When inserting plain SQL into jOOQ objects, you must + guarantee syntax integrity. You may also create the possibility of + malicious SQL injection. Be sure to properly use bind variables and/or + escape literals when concatenated into SQL clauses! * * @see SQL */ @@ -99,6 +109,11 @@ public interface CreateViewAsStep { /** * Add the AS clause to the CREATE VIEW statement. +

+ NOTE: When inserting plain SQL into jOOQ objects, you must + guarantee syntax integrity. You may also create the possibility of + malicious SQL injection. Be sure to properly use bind variables and/or + escape literals when concatenated into SQL clauses! * * @see SQL */ @@ -109,6 +124,11 @@ public interface CreateViewAsStep { /** * Add the AS clause to the CREATE VIEW statement. +

+ NOTE: When inserting plain SQL into jOOQ objects, you must + guarantee syntax integrity. You may also create the possibility of + malicious SQL injection. Be sure to properly use bind variables and/or + escape literals when concatenated into SQL clauses! * * @see SQL */