diff --git a/jOOQ-examples/jOOQ-nashorn-example/.gitignore b/jOOQ-examples/jOOQ-nashorn-example/.gitignore deleted file mode 100644 index 9df5d49712..0000000000 --- a/jOOQ-examples/jOOQ-nashorn-example/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/target -/*.iml \ No newline at end of file diff --git a/jOOQ-examples/jOOQ-nashorn-example/LICENSE.txt b/jOOQ-examples/jOOQ-nashorn-example/LICENSE.txt deleted file mode 100644 index d090694f44..0000000000 --- a/jOOQ-examples/jOOQ-nashorn-example/LICENSE.txt +++ /dev/null @@ -1,19 +0,0 @@ -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - -Other licenses: ------------------------------------------------------------------------------ -Commercial licenses for this work are available. These replace the above -ASL 2.0 and offer limited warranties, support, maintenance, and commercial -database integrations. - -For more information, please visit: http://www.jooq.org/licenses \ No newline at end of file diff --git a/jOOQ-examples/jOOQ-nashorn-example/README.md b/jOOQ-examples/jOOQ-nashorn-example/README.md deleted file mode 100644 index 0d2a5b1c15..0000000000 --- a/jOOQ-examples/jOOQ-nashorn-example/README.md +++ /dev/null @@ -1,12 +0,0 @@ -Thanks for downloading jOOQ. -Please visit http://www.jooq.org for more information. - -To install and run this example, simply check it out and run the following Maven command - -``` -$ pwd -/path/to/checkout/dir -$ cd jOOQ-examples/jOOQ-nashorn-example -... -$ mvn clean install -``` \ No newline at end of file diff --git a/jOOQ-examples/jOOQ-nashorn-example/pom.xml b/jOOQ-examples/jOOQ-nashorn-example/pom.xml deleted file mode 100644 index 8d856f3720..0000000000 --- a/jOOQ-examples/jOOQ-nashorn-example/pom.xml +++ /dev/null @@ -1,193 +0,0 @@ - - - 4.0.0 - - org.jooq - jooq-nashorn-example - 1.0 - jOOQ Nashorn Example - - - - Apache License, Version 2.0 - http://www.jooq.org/inc/LICENSE.txt - repo - - - - - UTF-8 - 3.2.6.RELEASE - 3.12.0-SNAPSHOT - 1.4.197 - - - - - - - org.jooq - jooq - ${org.jooq.version} - - - com.h2database - h2 - ${org.h2.version} - - - - - org.apache.logging.log4j - log4j-slf4j-impl - 2.11.0 - - - - - junit - junit - 4.12 - jar - test - - - - - - - - - true - src/main/resources - - **/*.xml - **/*.properties - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.7.0 - - true - 1024m - 256m - UTF-8 - 1.8 - 1.8 - true - lines,vars,source - - - -Xlint:varargs - - - - - - - org.codehaus.mojo - properties-maven-plugin - 1.0-alpha-2 - - - initialize - - read-project-properties - - - - src/main/resources/config.properties - - - - - - - - - org.codehaus.mojo - sql-maven-plugin - 1.5 - - - ${maven.test.skip} - always - - - - - create-database-h2 - generate-sources - - execute - - - ${db.driver} - ${db.url} - ${db.username} - ${db.password} - - true - - src/main/resources/db-h2.sql - - - - - - - - com.h2database - h2 - ${org.h2.version} - - - - - - - org.jooq - jooq-codegen-maven - ${org.jooq.version} - - - - generate-h2 - generate-sources - - generate - - - - ${db.driver} - ${db.url} - ${db.username} - ${db.password} - - - - PUBLIC - - - org.jooq.example.db.h2 - target/generated-sources/jooq-h2 - - - - - - - - - \ No newline at end of file diff --git a/jOOQ-examples/jOOQ-nashorn-example/src/main/resources/META-INF/LICENSE.txt b/jOOQ-examples/jOOQ-nashorn-example/src/main/resources/META-INF/LICENSE.txt deleted file mode 100644 index d090694f44..0000000000 --- a/jOOQ-examples/jOOQ-nashorn-example/src/main/resources/META-INF/LICENSE.txt +++ /dev/null @@ -1,19 +0,0 @@ -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - -Other licenses: ------------------------------------------------------------------------------ -Commercial licenses for this work are available. These replace the above -ASL 2.0 and offer limited warranties, support, maintenance, and commercial -database integrations. - -For more information, please visit: http://www.jooq.org/licenses \ No newline at end of file diff --git a/jOOQ-examples/jOOQ-nashorn-example/src/main/resources/META-INF/README.txt b/jOOQ-examples/jOOQ-nashorn-example/src/main/resources/META-INF/README.txt deleted file mode 100644 index 0ba2c43dd5..0000000000 --- a/jOOQ-examples/jOOQ-nashorn-example/src/main/resources/META-INF/README.txt +++ /dev/null @@ -1,2 +0,0 @@ -Thanks for downloading jOOQ. -Please visit http://www.jooq.org for more information. diff --git a/jOOQ-examples/jOOQ-nashorn-example/src/main/resources/config.properties b/jOOQ-examples/jOOQ-nashorn-example/src/main/resources/config.properties deleted file mode 100644 index 6b0cee6522..0000000000 --- a/jOOQ-examples/jOOQ-nashorn-example/src/main/resources/config.properties +++ /dev/null @@ -1,11 +0,0 @@ -#Database Configuration -db.driver=org.h2.Driver -db.url=jdbc:h2:~/jooq-nashorn-example -db.username=sa -db.password= - -#jOOQ Configuration -jooq.sql.dialect=H2 - -#DB Schema -db.schema.script=db-h2.sql \ No newline at end of file diff --git a/jOOQ-examples/jOOQ-nashorn-example/src/main/resources/db-h2.sql b/jOOQ-examples/jOOQ-nashorn-example/src/main/resources/db-h2.sql deleted file mode 100644 index 3a7c5a379e..0000000000 --- a/jOOQ-examples/jOOQ-nashorn-example/src/main/resources/db-h2.sql +++ /dev/null @@ -1,78 +0,0 @@ -DROP TABLE IF EXISTS book_to_book_store; -DROP TABLE IF EXISTS book_store; -DROP TABLE IF EXISTS book; -DROP TABLE IF EXISTS author; - -DROP SEQUENCE IF EXISTS s_author_id; -CREATE SEQUENCE s_author_id START WITH 1; - -CREATE TABLE author ( - id INT NOT NULL, - first_name VARCHAR(50), - last_name VARCHAR(50) NOT NULL, - date_of_birth DATE, - year_of_birth INT, - address VARCHAR(50), - - CONSTRAINT pk_t_author PRIMARY KEY (ID) -); - -CREATE TABLE book ( - id INT NOT NULL, - author_id INT NOT NULL, - co_author_id INT, - details_id INT, - title VARCHAR(400) NOT NULL, - published_in INT, - language_id INT, - content_text CLOB, - content_pdf BLOB, - - rec_version INT, - rec_timestamp TIMESTAMP, - - CONSTRAINT pk_t_book PRIMARY KEY (id), - CONSTRAINT fk_t_book_author_id FOREIGN KEY (author_id) REFERENCES author(id), - CONSTRAINT fk_t_book_co_author_id FOREIGN KEY (co_author_id) REFERENCES author(id) -); - -CREATE TABLE book_store ( - name VARCHAR(400) NOT NULL, - - CONSTRAINT uk_t_book_store_name PRIMARY KEY(name) -); - -CREATE TABLE book_to_book_store ( - book_store_name VARCHAR(400) NOT NULL, - book_id INTEGER NOT NULL, - stock INTEGER, - - CONSTRAINT pk_b2bs PRIMARY KEY(book_store_name, book_id), - CONSTRAINT fk_b2bs_bs_name FOREIGN KEY (book_store_name) - REFERENCES book_store (name) - ON DELETE CASCADE, - CONSTRAINT fk_b2bs_b_id FOREIGN KEY (book_id) - REFERENCES book (id) - ON DELETE CASCADE -); - -INSERT INTO author VALUES (next value for s_author_id, 'George', 'Orwell', '1903-06-25', 1903, null); -INSERT INTO author VALUES (next value for s_author_id, 'Paulo', 'Coelho', '1947-08-24', 1947, null); - -INSERT INTO book VALUES (1, 1, null, null, '1984', 1948, 1, 'To know and not to know, to be conscious of complete truthfulness while telling carefully constructed lies, to hold simultaneously two opinions which cancelled out, knowing them to be contradictory and believing in both of them, to use logic against logic, to repudiate morality while laying claim to it, to believe that democracy was impossible and that the Party was the guardian of democracy, to forget, whatever it was necessary to forget, then to draw it back into memory again at the moment when it was needed, and then promptly to forget it again, and above all, to apply the same process to the process itself -- that was the ultimate subtlety; consciously to induce unconsciousness, and then, once again, to become unconscious of the act of hypnosis you had just performed. Even to understand the word ''doublethink'' involved the use of doublethink..', null, 1, '2010-01-01 00:00:00'); -INSERT INTO book VALUES (2, 1, null, null, 'Animal Farm', 1945, 1, null, null, null, '2010-01-01 00:00:00'); -INSERT INTO book VALUES (3, 2, null, null, 'O Alquimista', 1988, 4, null, null, 1, null); -INSERT INTO book VALUES (4, 2, null, null, 'Brida', 1990, 2, null, null, null, null); - -INSERT INTO book_store (name) VALUES - ('Orell Füssli'), - ('Ex Libris'), - ('Buchhandlung im Volkshaus'); - -INSERT INTO book_to_book_store VALUES - ('Orell Füssli', 1, 10), - ('Orell Füssli', 2, 10), - ('Orell Füssli', 3, 10), - ('Ex Libris', 1, 1), - ('Ex Libris', 3, 2), - ('Buchhandlung im Volkshaus', 3, 1); diff --git a/jOOQ-examples/jOOQ-nashorn-example/src/main/resources/log4j.xml b/jOOQ-examples/jOOQ-nashorn-example/src/main/resources/log4j.xml deleted file mode 100644 index 8c478c982b..0000000000 --- a/jOOQ-examples/jOOQ-nashorn-example/src/main/resources/log4j.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jOOQ-examples/jOOQ-nashorn-example/src/main/resources/log4j2.xml b/jOOQ-examples/jOOQ-nashorn-example/src/main/resources/log4j2.xml deleted file mode 100644 index 2abf19ea9e..0000000000 --- a/jOOQ-examples/jOOQ-nashorn-example/src/main/resources/log4j2.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/jOOQ-examples/jOOQ-nashorn-example/src/test/java/org/jooq/example/NashornTest.java b/jOOQ-examples/jOOQ-nashorn-example/src/test/java/org/jooq/example/NashornTest.java deleted file mode 100644 index af1573ea31..0000000000 --- a/jOOQ-examples/jOOQ-nashorn-example/src/test/java/org/jooq/example/NashornTest.java +++ /dev/null @@ -1,96 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * Other licenses: - * ----------------------------------------------------------------------------- - * Commercial licenses for this work are available. These replace the above - * ASL 2.0 and offer limited warranties, support, maintenance, and commercial - * database integrations. - * - * For more information, please visit: http://www.jooq.org/licenses - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - */ -package org.jooq.example; - -import static javax.script.ScriptContext.ENGINE_SCOPE; - -import java.io.File; -import java.io.FileReader; -import java.sql.Connection; -import java.sql.DriverManager; -import java.util.Properties; -import java.util.stream.Stream; - -import javax.script.Bindings; -import javax.script.ScriptEngine; -import javax.script.ScriptEngineManager; - -import org.junit.BeforeClass; -import org.junit.Test; - -/** - * @author Lukas Eder - */ -public class NashornTest { - - private static Connection connection; - - @BeforeClass - public static void before() throws Exception { - Properties properties = new Properties(); - properties.load(NashornTest.class.getResourceAsStream("/config.properties")); - - Class.forName(properties.getProperty("db.driver")); - connection = DriverManager.getConnection( - properties.getProperty("db.url"), - properties.getProperty("db.username"), - properties.getProperty("db.password") - ); - } - - @Test - public void testScripts() throws Exception { - Stream.of( - new File(getClass().getResource("/org/jooq/example/test").toURI()).listFiles((dir, name) -> name.endsWith(".js")) - ).forEach(file -> { - ScriptEngineManager manager = new ScriptEngineManager(); - ScriptEngine engine = manager.getEngineByName("nashorn"); - - Bindings bindings = engine.getBindings(ENGINE_SCOPE); - bindings.put("connection", connection); - - try { - engine.eval(new FileReader(file)); - } - catch (Exception e) { - throw new RuntimeException("Error while running " + file, e); - } - }); - - } -} diff --git a/jOOQ-examples/jOOQ-nashorn-example/src/test/resources/org/jooq/example/test/settings.js b/jOOQ-examples/jOOQ-nashorn-example/src/test/resources/org/jooq/example/test/settings.js deleted file mode 100644 index f5d5f75308..0000000000 --- a/jOOQ-examples/jOOQ-nashorn-example/src/test/resources/org/jooq/example/test/settings.js +++ /dev/null @@ -1,33 +0,0 @@ -var DSL = Java.type("org.jooq.impl.DSL"); -var Settings = Java.type("org.jooq.conf.Settings"); -var RenderNameStyle = Java.type("org.jooq.conf.RenderNameStyle"); - -var Assert = Java.type("org.junit.Assert"); -var Arrays = Java.type("java.util.Arrays"); - -var Tables = Java.type("org.jooq.example.db.h2.Tables"); -var b = Tables.BOOK; -var a = Tables.AUTHOR; - - -// Unfortunately, there is a Nashorn / Java interoperablility issue documented here: -// http://stackoverflow.com/q/25603191/521799 -// -// To work around this issue, tables should probably be supplied in JavaScript arrays, -// in order to explicitly invoke the method accepting varargs, instead of the overloaded method - -var authors = DSL.using(connection, new Settings().withRenderNameStyle(RenderNameStyle.AS_IS)) - .select(a.ID) - .from([a]) - .orderBy(a.ID) - .fetch(a.ID); - -Assert.assertEquals(Arrays.asList([1, 2]), authors); - -var authors = DSL.using(connection, new Settings().withRenderNameStyle(RenderNameStyle.AS_IS)) - .select(a.ID) - .from([DSL.tableByName("author")]) - .orderBy(a.ID) - .fetch(a.ID); - -Assert.assertEquals(Arrays.asList([1, 2]), authors); \ No newline at end of file diff --git a/jOOQ-examples/jOOQ-nashorn-example/src/test/resources/org/jooq/example/test/simple-query.js b/jOOQ-examples/jOOQ-nashorn-example/src/test/resources/org/jooq/example/test/simple-query.js deleted file mode 100644 index 69f665d13c..0000000000 --- a/jOOQ-examples/jOOQ-nashorn-example/src/test/resources/org/jooq/example/test/simple-query.js +++ /dev/null @@ -1,16 +0,0 @@ -var DSL = Java.type("org.jooq.impl.DSL"); - -var Assert = Java.type("org.junit.Assert"); -var Arrays = Java.type("java.util.Arrays"); - -var Tables = Java.type("org.jooq.example.db.h2.Tables"); -var b = Tables.BOOK; -var a = Tables.AUTHOR; - -var books = DSL.using(connection) - .select(b.ID) - .from(b) - .orderBy(b.ID) - .fetch(b.ID); - -Assert.assertEquals(Arrays.asList([1, 2, 3, 4]), books);