diff --git a/jOOQ-codegen/pom.xml b/jOOQ-codegen/pom.xml index e57a9bca1f..22cc1fdfbb 100644 --- a/jOOQ-codegen/pom.xml +++ b/jOOQ-codegen/pom.xml @@ -127,6 +127,49 @@ true + + + org.apache.felix + maven-bundle-plugin + 2.1.0 + true + + + bundle-manifest + process-classes + + manifest + + + + + + jar + + + ${project.artifactId} + * + + javax.persistence;resolution:=optional, + oracle.sql;resolution:=optional, + org.apache.log4j;resolution:=optional, + * + + <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@))) + + + + + org.apache.maven.plugins + maven-jar-plugin + 2.3.2 + + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + diff --git a/jOOQ-codegen/src/main/java/org/jooq/util/DefaultGenerator.java b/jOOQ-codegen/src/main/java/org/jooq/util/DefaultGenerator.java index 525f10f4c7..5808a339bc 100644 --- a/jOOQ-codegen/src/main/java/org/jooq/util/DefaultGenerator.java +++ b/jOOQ-codegen/src/main/java/org/jooq/util/DefaultGenerator.java @@ -76,6 +76,7 @@ import org.jooq.TableField; import org.jooq.UDT; import org.jooq.UDTField; import org.jooq.UniqueKey; +import org.jooq.exception.DataAccessException; import org.jooq.impl.AbstractKeys; import org.jooq.impl.AbstractRoutine; import org.jooq.impl.ArrayRecordImpl; @@ -840,31 +841,6 @@ public class DefaultGenerator implements Generator { out.print(strategy.getFullJavaIdentifierUC(table)); out.println(");"); out.println("\t}"); - - if (generateDeprecated()) { - out.println(); - - out.println("\t/**"); - out.println("\t * Create an attached " + strategy.getJavaClassName(table, "Record")); - out.println("\t * @deprecated - 1.6.4 [#363, #789] - use the other constructor instead for unattached"); - out.println("\t * records, or {@link org.jooq.impl.Factory#newRecord(org.jooq.Table)} for attached ones"); - - out.println("\t */"); - out.println("\t@Deprecated"); - - out.print("\tpublic "); - out.print(strategy.getJavaClassName(table, "Record")); - out.print("("); - out.print(Configuration.class); - out.println(" configuration) {"); - - out.print("\t\tsuper("); - out.print(strategy.getFullJavaIdentifierUC(table)); - out.println(", configuration);"); - - out.println("\t}"); - } - out.println("}"); out.close(); } catch (Exception e) { @@ -1598,6 +1574,7 @@ public class DefaultGenerator implements Generator { out.println("\t * @param " + strategy.getJavaClassNameLC(parameter)); } + printThrowsDataAccessException(out); out.println("\t */"); out.print("\tpublic static "); @@ -1615,9 +1592,7 @@ public class DefaultGenerator implements Generator { out.print(strategy.getJavaClassNameLC(parameter)); } - out.print(") throws "); - out.print(SQLException.class); - out.println(" {"); + out.println(") {"); out.print("\t\t"); out.print(strategy.getFullJavaClassName(function)); out.print(" f = new "); @@ -1635,6 +1610,13 @@ public class DefaultGenerator implements Generator { out.println("\t}"); } + private void printThrowsDataAccessException(GenerationWriter out) { + out.print("\t * @throws "); + out.print(DataAccessException.class); + out.print(" if something went wrong executing the query"); + out.println(); + } + private void printPrivateConstructor(GenerationWriter out, String javaClassName) { out.println(); out.println("\t/**"); @@ -1669,6 +1651,7 @@ public class DefaultGenerator implements Generator { } } + printThrowsDataAccessException(out); out.println("\t */"); out.print("\tpublic static "); @@ -1695,9 +1678,7 @@ public class DefaultGenerator implements Generator { out.print(strategy.getJavaClassNameLC(parameter)); } - out.print(") throws "); - out.print(SQLException.class); - out.println(" {"); + out.println(") {"); out.print("\t\t"); out.print(strategy.getFullJavaClassName(procedure)); out.print(" p = new "); @@ -1866,10 +1847,7 @@ public class DefaultGenerator implements Generator { out.print(strategy.getJavaClassName(foreignKey.getKeyColumns().get(0))); } - out.print("() throws "); - out.print(SQLException.class); - out.println(" {"); - + out.println("() {"); out.println("\t\treturn create()"); out.print("\t\t\t.selectFrom("); out.print(strategy.getFullJavaIdentifierUC(referencing)); @@ -1941,10 +1919,7 @@ public class DefaultGenerator implements Generator { out.print(strategy.getJavaClassName(column)); } - out.print("() throws "); - out.print(SQLException.class); - out.println(" {"); - + out.println("() {"); out.println("\t\treturn create()"); out.print("\t\t\t.selectFrom("); out.print(strategy.getFullJavaIdentifierUC(referenced)); @@ -2174,7 +2149,7 @@ public class DefaultGenerator implements Generator { version = properties.getProperty("version"); } catch (Exception e) { - version = "1.6.8"; + version = "unknown"; } } diff --git a/jOOQ-codegen/src/main/java/org/jooq/util/generator.properties b/jOOQ-codegen/src/main/java/org/jooq/util/generator.properties index 7f2a99b14f..e997a9af99 100644 --- a/jOOQ-codegen/src/main/java/org/jooq/util/generator.properties +++ b/jOOQ-codegen/src/main/java/org/jooq/util/generator.properties @@ -1 +1 @@ -version=1.6.8 \ No newline at end of file +version=2.0.0 \ No newline at end of file diff --git a/jOOQ-meta/pom.xml b/jOOQ-meta/pom.xml index e1d860735f..bbf61ab329 100644 --- a/jOOQ-meta/pom.xml +++ b/jOOQ-meta/pom.xml @@ -126,6 +126,49 @@ true + + + org.apache.felix + maven-bundle-plugin + 2.1.0 + true + + + bundle-manifest + process-classes + + manifest + + + + + + jar + + + ${project.artifactId} + * + + javax.persistence;resolution:=optional, + oracle.sql;resolution:=optional, + org.apache.log4j;resolution:=optional, + * + + <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@))) + + + + + org.apache.maven.plugins + maven-jar-plugin + 2.3.2 + + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + diff --git a/jOOQ-meta/src/main/java/org/jooq/util/AbstractDatabase.java b/jOOQ-meta/src/main/java/org/jooq/util/AbstractDatabase.java index ddb1bf2c8c..c593d3ba08 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/AbstractDatabase.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/AbstractDatabase.java @@ -67,8 +67,6 @@ public abstract class AbstractDatabase implements Database { private List enums; private List udts; private List arrays; - private List procedures; - private List functions; private List routines; private List packages; private Relations relations; @@ -328,50 +326,6 @@ public abstract class AbstractDatabase implements Database { return relations; } - @Override - @Deprecated - public final List getProcedures() { - if (procedures == null) { - procedures = new ArrayList(); - - try { - List r = getRoutines(); - - for (RoutineDefinition routine : r) { - if (!routine.isSQLUsable()) { - procedures.add(routine); - } - } - } catch (Exception e) { - log.error("Error while fetching procedures", e); - } - } - - return procedures; - } - - @Override - @Deprecated - public final List getFunctions() { - if (functions == null) { - functions = new ArrayList(); - - try { - List r = getRoutines(); - - for (RoutineDefinition routine : r) { - if (routine.isSQLUsable()) { - functions.add(routine); - } - } - } catch (Exception e) { - log.error("Error while fetching functions", e); - } - } - - return functions; - } - @Override public final List getRoutines() { if (routines == null) { diff --git a/jOOQ-meta/src/main/java/org/jooq/util/AbstractDefinition.java b/jOOQ-meta/src/main/java/org/jooq/util/AbstractDefinition.java index d8700c3031..047f564660 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/AbstractDefinition.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/AbstractDefinition.java @@ -83,18 +83,6 @@ public abstract class AbstractDefinition implements Definition { return name; } - @Override - @Deprecated - public final String getNameUC() { - return name.toUpperCase(); - } - - @Override - @Deprecated - public final String getNameLC() { - return name.toLowerCase(); - } - @Override public final String getComment() { return comment; diff --git a/jOOQ-meta/src/main/java/org/jooq/util/AbstractPackageDefinition.java b/jOOQ-meta/src/main/java/org/jooq/util/AbstractPackageDefinition.java index 2b11e409ab..037790e29e 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/AbstractPackageDefinition.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/AbstractPackageDefinition.java @@ -48,46 +48,12 @@ public abstract class AbstractPackageDefinition extends AbstractDefinition imple private static final JooqLogger log = JooqLogger.getLogger(AbstractPackageDefinition.class); - private List procedures; - private List functions; private List routines; public AbstractPackageDefinition(Database database, String name, String comment) { super(database, name, comment); } - @Override - @Deprecated - public final List getProcedures() { - if (procedures == null) { - procedures = new ArrayList(); - - for (RoutineDefinition routine : getRoutines()) { - if (!routine.isSQLUsable()) { - procedures.add(routine); - } - } - } - - return procedures; - } - - @Override - @Deprecated - public final List getFunctions() { - if (functions == null) { - functions = new ArrayList(); - - for (RoutineDefinition routine : getRoutines()) { - if (routine.isSQLUsable()) { - functions.add(routine); - } - } - } - - return functions; - } - @Override public final List getRoutines() { if (routines == null) { diff --git a/jOOQ-meta/src/main/java/org/jooq/util/ColumnDefinition.java b/jOOQ-meta/src/main/java/org/jooq/util/ColumnDefinition.java index d62753ab8f..342e75743b 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/ColumnDefinition.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/ColumnDefinition.java @@ -45,14 +45,6 @@ import java.util.List; */ public interface ColumnDefinition extends TypedElementDefinition { - /** - * The column's owner table - * - * @deprecated - 1.6.3 - Use {@link #getContainer()} instead - */ - @Deprecated - TableDefinition getTable(); - /** * The column position in the table */ diff --git a/jOOQ-meta/src/main/java/org/jooq/util/Database.java b/jOOQ-meta/src/main/java/org/jooq/util/Database.java index 721a796049..3704d16b91 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/Database.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/Database.java @@ -122,38 +122,6 @@ public interface Database { */ List getRoutines(); - /** - * The stored procedures contained in this database (for schema - * {@link #getSchema()}) - * - * @deprecated - 1.6.8 [#852] - The stored procedure / stored function - * distinction has been reviewed in jOOQ. The 12 currently - * supported RDBMS have such a distinct idea of what is a - * procedure and what is a function that it makes no longer - * sense to distinguish them generally, in jOOQ. See https://sourceforge.net/apps/trac/jooq/ticket/852 for - * more details. - */ - @Deprecated - List getProcedures(); - - /** - * The stored functions contained in this database (for schema - * {@link #getSchema()}) - * - * @deprecated - 1.6.8 [#852] - The stored procedure / stored function - * distinction has been reviewed in jOOQ. The 12 currently - * supported RDBMS have such a distinct idea of what is a - * procedure and what is a function that it makes no longer - * sense to distinguish them generally, in jOOQ. See https://sourceforge.net/apps/trac/jooq/ticket/852 for - * more details. - */ - @Deprecated - List getFunctions(); - /** * The packages contained in this database (for schema {@link #getSchema()}) */ diff --git a/jOOQ-meta/src/main/java/org/jooq/util/DefaultAttributeDefinition.java b/jOOQ-meta/src/main/java/org/jooq/util/DefaultAttributeDefinition.java index 21277cc3a2..65dcd5573b 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/DefaultAttributeDefinition.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/DefaultAttributeDefinition.java @@ -47,9 +47,4 @@ public class DefaultAttributeDefinition extends AbstractTypedElementDefinitionhttps://sourceforge.net/apps/trac/jooq/ticket/852 for - * more details. - */ - @Deprecated - List getProcedures(); - - /** - * Fetch all stored functions from the package - * - * @deprecated - 1.6.8 [#852] - The stored procedure / stored function - * distinction has been reviewed in jOOQ. The 12 currently - * supported RDBMS have such a distinct idea of what is a - * procedure and what is a function that it makes no longer - * sense to distinguish them generally, in jOOQ. See https://sourceforge.net/apps/trac/jooq/ticket/852 for - * more details. - */ - @Deprecated - List getFunctions(); - /** * Fetch all routines from the package */ diff --git a/jOOQ-meta/src/main/java/org/jooq/util/ParameterDefinition.java b/jOOQ-meta/src/main/java/org/jooq/util/ParameterDefinition.java index ec1b3ef4cb..94373592b8 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/ParameterDefinition.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/ParameterDefinition.java @@ -42,12 +42,4 @@ package org.jooq.util; */ public interface ParameterDefinition extends TypedElementDefinition { - /** - * The parameter's owner callable - * - * @deprecated - 1.6.3 - Use {@link #getContainer()} instead - */ - @Deprecated - RoutineDefinition getCallable(); - } diff --git a/jOOQ-meta/src/main/java/org/jooq/util/ase/ASEDatabase.java b/jOOQ-meta/src/main/java/org/jooq/util/ase/ASEDatabase.java index aa2b62e3df..1258efa47e 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/ase/ASEDatabase.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/ase/ASEDatabase.java @@ -120,7 +120,7 @@ public class ASEDatabase extends AbstractDatabase { * >http://www.dbforums.com/sybase/1625012-sysindexes-question-testing- * unique-clustered-indexes.html */ - private List fetchKeys(int incl, int excl) throws SQLException { + private List fetchKeys(int incl, int excl) { return create().select( field("name", String.class), field("object_name(id)", String.class), @@ -199,7 +199,7 @@ public class ASEDatabase extends AbstractDatabase { return result; } - private List fetchTableNames() throws SQLException { + private List fetchTableNames() { List result = new ArrayList(); for (Record record : create().fetch("sp_help")) { diff --git a/jOOQ-meta/src/main/java/org/jooq/util/db2/DB2Database.java b/jOOQ-meta/src/main/java/org/jooq/util/db2/DB2Database.java index 329f2500df..928cd3d969 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/db2/DB2Database.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/db2/DB2Database.java @@ -117,7 +117,7 @@ public class DB2Database extends AbstractDatabase { } } - private List fetchKeys(String constraintType) throws SQLException { + private List fetchKeys(String constraintType) { return create().select( Keycoluse.CONSTNAME, Keycoluse.TABNAME, diff --git a/jOOQ-meta/src/main/java/org/jooq/util/db2/DB2RoutineDefinition.java b/jOOQ-meta/src/main/java/org/jooq/util/db2/DB2RoutineDefinition.java index 0025d74414..ed3f5bc83f 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/db2/DB2RoutineDefinition.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/db2/DB2RoutineDefinition.java @@ -79,7 +79,7 @@ public class DB2RoutineDefinition extends AbstractRoutineDefinition { } } - private void initF() throws SQLException { + private void initF() { for (Record record : create() .select( Funcparms.ROWTYPE, @@ -129,7 +129,7 @@ public class DB2RoutineDefinition extends AbstractRoutineDefinition { } } - private void initP() throws SQLException { + private void initP() { for (Record record : create().select( Procparms.PARMNAME, Procparms.TYPENAME, diff --git a/jOOQ-meta/src/main/java/org/jooq/util/derby/DerbyDatabase.java b/jOOQ-meta/src/main/java/org/jooq/util/derby/DerbyDatabase.java index 36e25e3328..e6aec3247d 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/derby/DerbyDatabase.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/derby/DerbyDatabase.java @@ -114,7 +114,7 @@ public class DerbyDatabase extends AbstractDatabase { } } - private List fetchKeys(String constraintType) throws SQLException { + private List fetchKeys(String constraintType) { return create().select( Systables.TABLENAME, Systables.TABLEID, diff --git a/jOOQ-meta/src/main/java/org/jooq/util/h2/H2Database.java b/jOOQ-meta/src/main/java/org/jooq/util/h2/H2Database.java index 48e2befa94..a79d18de17 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/h2/H2Database.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/h2/H2Database.java @@ -116,7 +116,7 @@ public class H2Database extends AbstractDatabase { } } - private List fetchKeys(String constraintType) throws SQLException { + private List fetchKeys(String constraintType) { return create().select( Constraints.TABLE_NAME, Constraints.COLUMN_LIST, diff --git a/jOOQ-meta/src/main/java/org/jooq/util/hsqldb/HSQLDBDatabase.java b/jOOQ-meta/src/main/java/org/jooq/util/hsqldb/HSQLDBDatabase.java index 19a2dd60bc..afe350658a 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/hsqldb/HSQLDBDatabase.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/hsqldb/HSQLDBDatabase.java @@ -118,7 +118,7 @@ public class HSQLDBDatabase extends AbstractDatabase { } } - private List fetchKeys(String constraintType) throws SQLException { + private List fetchKeys(String constraintType) { return create() .select(KeyColumnUsage.CONSTRAINT_NAME, KeyColumnUsage.TABLE_NAME, KeyColumnUsage.COLUMN_NAME) .from(TABLE_CONSTRAINTS) diff --git a/jOOQ-meta/src/main/java/org/jooq/util/ingres/IngresDatabase.java b/jOOQ-meta/src/main/java/org/jooq/util/ingres/IngresDatabase.java index df2000d80c..079c4c4100 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/ingres/IngresDatabase.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/ingres/IngresDatabase.java @@ -110,7 +110,7 @@ public class IngresDatabase extends AbstractDatabase { } } - private List fetchKeys(String constraintType) throws SQLException { + private List fetchKeys(String constraintType) { return create().select( Iiconstraints.TABLE_NAME.trim(), Iiconstraints.CONSTRAINT_NAME.trim(), diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/MySQLDatabase.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/MySQLDatabase.java index 538f543f55..72fcf8f5c8 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/MySQLDatabase.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/MySQLDatabase.java @@ -112,7 +112,7 @@ public class MySQLDatabase extends AbstractDatabase { return "KEY_" + tableName + "_" + keyName; } - private List fetchKeys(String constraintType) throws SQLException { + private List fetchKeys(String constraintType) { return create().select( KeyColumnUsage.CONSTRAINT_NAME, KeyColumnUsage.TABLE_NAME, diff --git a/jOOQ-meta/src/main/java/org/jooq/util/oracle/OracleDatabase.java b/jOOQ-meta/src/main/java/org/jooq/util/oracle/OracleDatabase.java index f531112a88..b2e916340e 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/oracle/OracleDatabase.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/oracle/OracleDatabase.java @@ -116,7 +116,7 @@ public class OracleDatabase extends AbstractDatabase { } } - private List fetchKeys(String constraintType) throws SQLException { + private List fetchKeys(String constraintType) { return create().select( AllConsColumns.CONSTRAINT_NAME, AllConsColumns.TABLE_NAME, diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/PostgresDatabase.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/PostgresDatabase.java index 2144d9af07..f3fc95e645 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/PostgresDatabase.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/PostgresDatabase.java @@ -125,7 +125,7 @@ public class PostgresDatabase extends AbstractDatabase { } } - private List fetchKeys(String constraintType) throws SQLException { + private List fetchKeys(String constraintType) { return create() .select(KeyColumnUsage.CONSTRAINT_NAME, KeyColumnUsage.TABLE_NAME, KeyColumnUsage.COLUMN_NAME) .from(TABLE_CONSTRAINTS) diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalog.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalog.java index dea27ba007..c52169aca1 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalog.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalog.java @@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PgCatalog extends org.jooq.impl.SchemaImpl { - private static final long serialVersionUID = 983516812; + private static final long serialVersionUID = 1809852031; /** * The singleton instance of pg_catalog diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalogFactory.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalogFactory.java index 95a3beb6a2..b0cd1a6c34 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalogFactory.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalogFactory.java @@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PgCatalogFactory extends org.jooq.util.postgres.PostgresFactory { - private static final long serialVersionUID = -1057336342; + private static final long serialVersionUID = 2011530141; /** * Create a factory with a connection diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/Routines.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/Routines.java index e9c5088366..b482225973 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/Routines.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/Routines.java @@ -8,7 +8,7 @@ package org.jooq.util.postgres.pg_catalog; * * Convenience access to all stored procedures and functions in pg_catalog */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public final class Routines { @@ -17,8 +17,9 @@ public final class Routines { * * @param __1 * @param __2 + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.String formatType(org.jooq.Configuration configuration, java.lang.Long __1, java.lang.Integer __2) throws java.sql.SQLException { + public static java.lang.String formatType(org.jooq.Configuration configuration, java.lang.Long __1, java.lang.Integer __2) { org.jooq.util.postgres.pg_catalog.routines.FormatType f = new org.jooq.util.postgres.pg_catalog.routines.FormatType(); f.set__1(__1); f.set__2(__2); diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/FormatType.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/FormatType.java index 207e00b38f..1a6768ee98 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/FormatType.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/FormatType.java @@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FormatType extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 988703117; + private static final long serialVersionUID = 1575827642; /** diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgAttribute.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgAttribute.java index 29823e7bfc..9e0c8f30f9 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgAttribute.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgAttribute.java @@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PgAttribute extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -1758823838; + private static final long serialVersionUID = 988686159; /** * The singleton instance of pg_attribute diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgClass.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgClass.java index eb4c2c8d20..178ad15117 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgClass.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgClass.java @@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PgClass extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 54584224; + private static final long serialVersionUID = 867479885; /** * The singleton instance of pg_class diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgEnum.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgEnum.java index 8f7150f639..13e6d36325 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgEnum.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgEnum.java @@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PgEnum extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -2027701323; + private static final long serialVersionUID = -1193939928; /** * The singleton instance of pg_enum diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgProc.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgProc.java index 836659e4e4..94547f1b03 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgProc.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgProc.java @@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PgProc extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -760461353; + private static final long serialVersionUID = -116055862; /** * The singleton instance of pg_proc diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgType.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgType.java index a7dc1ab2a6..4833b81d08 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgType.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgType.java @@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PgType extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -1447393922; + private static final long serialVersionUID = -105484885; /** * The singleton instance of pg_type diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgAttributeRecord.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgAttributeRecord.java index ef3ab28e9d..5d3520e80d 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgAttributeRecord.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgAttributeRecord.java @@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PgAttributeRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -293465921; + private static final long serialVersionUID = -334791886; /** * An uncommented item diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgClassRecord.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgClassRecord.java index a80222d314..398d94f3e9 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgClassRecord.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgClassRecord.java @@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PgClassRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 76146041; + private static final long serialVersionUID = 1348614572; /** * An uncommented item diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgEnumRecord.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgEnumRecord.java index 6c5dda7310..53e9f40f76 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgEnumRecord.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgEnumRecord.java @@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PgEnumRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1356558793; + private static final long serialVersionUID = -262925572; /** * An uncommented item diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgProcRecord.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgProcRecord.java index 429b7fc075..400a553be8 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgProcRecord.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgProcRecord.java @@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PgProcRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 368545333; + private static final long serialVersionUID = -308195864; /** * An uncommented item diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgTypeRecord.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgTypeRecord.java index 8981d33d70..fda11e5517 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgTypeRecord.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgTypeRecord.java @@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PgTypeRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1574350423; + private static final long serialVersionUID = -460004662; /** * An uncommented item diff --git a/jOOQ-meta/src/main/java/org/jooq/util/sqlserver/SQLServerDatabase.java b/jOOQ-meta/src/main/java/org/jooq/util/sqlserver/SQLServerDatabase.java index 87ff311150..6c7d35ef97 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/sqlserver/SQLServerDatabase.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/sqlserver/SQLServerDatabase.java @@ -115,7 +115,7 @@ public class SQLServerDatabase extends AbstractDatabase { } } - private List fetchKeys(String constraintType) throws SQLException { + private List fetchKeys(String constraintType) { return create() .select(KeyColumnUsage.CONSTRAINT_NAME, KeyColumnUsage.TABLE_NAME, KeyColumnUsage.COLUMN_NAME) .from(TABLE_CONSTRAINTS) diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Keys.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Keys.java index e40efe5d4f..33a323a2cf 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Keys.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Keys.java @@ -8,7 +8,7 @@ package org.jooq.examples.mysql.sakila; * * A class modelling foreign key relationships between tables of the sakila schema */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") @SuppressWarnings({"unchecked"}) public class Keys extends org.jooq.impl.AbstractKeys { diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Routines.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Routines.java index ad2b2f422b..4796bfbbd4 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Routines.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Routines.java @@ -8,7 +8,7 @@ package org.jooq.examples.mysql.sakila; * * Convenience access to all stored procedures and functions in sakila */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public final class Routines { @@ -18,8 +18,9 @@ public final class Routines { * @param pFilmId IN parameter * @param pStoreId IN parameter * @param pFilmCount OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer filmInStock(org.jooq.Configuration configuration, java.lang.Integer pFilmId, java.lang.Integer pStoreId) throws java.sql.SQLException { + public static java.lang.Integer filmInStock(org.jooq.Configuration configuration, java.lang.Integer pFilmId, java.lang.Integer pStoreId) { org.jooq.examples.mysql.sakila.routines.FilmInStock p = new org.jooq.examples.mysql.sakila.routines.FilmInStock(); p.setPFilmId(pFilmId); p.setPStoreId(pStoreId); @@ -34,8 +35,9 @@ public final class Routines { * @param pFilmId IN parameter * @param pStoreId IN parameter * @param pFilmCount OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer filmNotInStock(org.jooq.Configuration configuration, java.lang.Integer pFilmId, java.lang.Integer pStoreId) throws java.sql.SQLException { + public static java.lang.Integer filmNotInStock(org.jooq.Configuration configuration, java.lang.Integer pFilmId, java.lang.Integer pStoreId) { org.jooq.examples.mysql.sakila.routines.FilmNotInStock p = new org.jooq.examples.mysql.sakila.routines.FilmNotInStock(); p.setPFilmId(pFilmId); p.setPStoreId(pStoreId); @@ -49,8 +51,9 @@ public final class Routines { * * @param pCustomerId * @param pEffectiveDate + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.math.BigDecimal getCustomerBalance(org.jooq.Configuration configuration, java.lang.Integer pCustomerId, java.sql.Timestamp pEffectiveDate) throws java.sql.SQLException { + public static java.math.BigDecimal getCustomerBalance(org.jooq.Configuration configuration, java.lang.Integer pCustomerId, java.sql.Timestamp pEffectiveDate) { org.jooq.examples.mysql.sakila.routines.GetCustomerBalance f = new org.jooq.examples.mysql.sakila.routines.GetCustomerBalance(); f.setPCustomerId(pCustomerId); f.setPEffectiveDate(pEffectiveDate); @@ -91,8 +94,9 @@ public final class Routines { * Invoke INVENTORY_HELD_BY_CUSTOMER * * @param pInventoryId + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer inventoryHeldByCustomer(org.jooq.Configuration configuration, java.lang.Integer pInventoryId) throws java.sql.SQLException { + public static java.lang.Integer inventoryHeldByCustomer(org.jooq.Configuration configuration, java.lang.Integer pInventoryId) { org.jooq.examples.mysql.sakila.routines.InventoryHeldByCustomer f = new org.jooq.examples.mysql.sakila.routines.InventoryHeldByCustomer(); f.setPInventoryId(pInventoryId); @@ -128,8 +132,9 @@ public final class Routines { * Invoke INVENTORY_IN_STOCK * * @param pInventoryId + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Byte inventoryInStock(org.jooq.Configuration configuration, java.lang.Integer pInventoryId) throws java.sql.SQLException { + public static java.lang.Byte inventoryInStock(org.jooq.Configuration configuration, java.lang.Integer pInventoryId) { org.jooq.examples.mysql.sakila.routines.InventoryInStock f = new org.jooq.examples.mysql.sakila.routines.InventoryInStock(); f.setPInventoryId(pInventoryId); @@ -167,8 +172,9 @@ public final class Routines { * @param minMonthlyPurchases IN parameter * @param minDollarAmountPurchased IN parameter * @param countRewardees OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer rewardsReport(org.jooq.Configuration configuration, java.lang.Byte minMonthlyPurchases, java.math.BigDecimal minDollarAmountPurchased) throws java.sql.SQLException { + public static java.lang.Integer rewardsReport(org.jooq.Configuration configuration, java.lang.Byte minMonthlyPurchases, java.math.BigDecimal minDollarAmountPurchased) { org.jooq.examples.mysql.sakila.routines.RewardsReport p = new org.jooq.examples.mysql.sakila.routines.RewardsReport(); p.setMinMonthlyPurchases(minMonthlyPurchases); p.setMinDollarAmountPurchased(minDollarAmountPurchased); diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Sakila.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Sakila.java index a79ae5c3ea..48cf711ff3 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Sakila.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Sakila.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Sakila extends org.jooq.impl.SchemaImpl { - private static final long serialVersionUID = -1482066181; + private static final long serialVersionUID = 550021934; /** * The singleton instance of sakila diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/SakilaFactory.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/SakilaFactory.java index 4e00fe904a..376e729f41 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/SakilaFactory.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/SakilaFactory.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class SakilaFactory extends org.jooq.util.mysql.MySQLFactory { - private static final long serialVersionUID = -386617597; + private static final long serialVersionUID = 1680109488; /** * Create a factory with a connection diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/FilmListRating.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/FilmListRating.java index fd6f7a842d..b84b0ff749 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/FilmListRating.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/FilmListRating.java @@ -6,7 +6,7 @@ package org.jooq.examples.mysql.sakila.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum FilmListRating implements org.jooq.EnumType { G("G"), diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/FilmRating.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/FilmRating.java index 7aa2e4ed57..712f39a3e0 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/FilmRating.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/FilmRating.java @@ -6,7 +6,7 @@ package org.jooq.examples.mysql.sakila.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum FilmRating implements org.jooq.EnumType { G("G"), diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/NicerButSlowerFilmListRating.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/NicerButSlowerFilmListRating.java index e770320625..f8351f5bda 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/NicerButSlowerFilmListRating.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/NicerButSlowerFilmListRating.java @@ -6,7 +6,7 @@ package org.jooq.examples.mysql.sakila.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum NicerButSlowerFilmListRating implements org.jooq.EnumType { G("G"), diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/FilmInStock.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/FilmInStock.java index b32c0dee69..938a6cba8f 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/FilmInStock.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/FilmInStock.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FilmInStock extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 134366551; + private static final long serialVersionUID = -796636086; /** diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/FilmNotInStock.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/FilmNotInStock.java index 0ef9f9a052..3c164207af 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/FilmNotInStock.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/FilmNotInStock.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FilmNotInStock extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 194545433; + private static final long serialVersionUID = 1256241740; /** diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/GetCustomerBalance.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/GetCustomerBalance.java index 748676b34f..41f68e61a8 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/GetCustomerBalance.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/GetCustomerBalance.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class GetCustomerBalance extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 631731635; + private static final long serialVersionUID = -1795174624; /** diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/InventoryHeldByCustomer.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/InventoryHeldByCustomer.java index 1c4af6a74b..9f6e64889e 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/InventoryHeldByCustomer.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/InventoryHeldByCustomer.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class InventoryHeldByCustomer extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -2068629393; + private static final long serialVersionUID = -2035383390; /** diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/InventoryInStock.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/InventoryInStock.java index 895103005c..aa4742e990 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/InventoryInStock.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/InventoryInStock.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class InventoryInStock extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1630294309; + private static final long serialVersionUID = 1403674706; /** diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/RewardsReport.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/RewardsReport.java index 69c5e4ac7c..0f29a7749d 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/RewardsReport.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/RewardsReport.java @@ -8,11 +8,11 @@ package org.jooq.examples.mysql.sakila.routines; * * Provides a customizable report on best customers */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class RewardsReport extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1687570424; + private static final long serialVersionUID = 774145595; /** diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Actor.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Actor.java index a803182e54..8a0c249313 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Actor.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Actor.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Actor extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -275976155; + private static final long serialVersionUID = 770113234; /** * The singleton instance of actor diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/ActorInfo.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/ActorInfo.java index 631838f453..6ae8f945c6 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/ActorInfo.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/ActorInfo.java @@ -8,11 +8,11 @@ package org.jooq.examples.mysql.sakila.tables; * * VIEW */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class ActorInfo extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 944323977; + private static final long serialVersionUID = -832128330; /** * The singleton instance of actor_info diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Address.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Address.java index 188301b4a8..76df24449a 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Address.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Address.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Address extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -2110007841; + private static final long serialVersionUID = -2003093358; /** * The singleton instance of address diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Category.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Category.java index 2c7acaae8a..f01be31e64 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Category.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Category.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Category extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1178997765; + private static final long serialVersionUID = 303561000; /** * The singleton instance of category diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/City.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/City.java index e489e77e31..f0678c0880 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/City.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/City.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class City extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -847587354; + private static final long serialVersionUID = -1083672109; /** * The singleton instance of city diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Country.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Country.java index 777bfea9ad..03875badbd 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Country.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Country.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Country extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 2057134811; + private static final long serialVersionUID = 1583843534; /** * The singleton instance of country diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Customer.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Customer.java index dd4c837ba5..153855a34c 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Customer.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Customer.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Customer extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 2116895802; + private static final long serialVersionUID = 1839370797; /** * The singleton instance of customer diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/CustomerList.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/CustomerList.java index d14f82fb3f..ec3d9e4e38 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/CustomerList.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/CustomerList.java @@ -8,11 +8,11 @@ package org.jooq.examples.mysql.sakila.tables; * * VIEW */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class CustomerList extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 1187425779; + private static final long serialVersionUID = 1228613216; /** * The singleton instance of customer_list diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Film.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Film.java index 707e392bc0..1dfa816b67 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Film.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Film.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Film extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1331408020; + private static final long serialVersionUID = -1533479929; /** * The singleton instance of film diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmActor.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmActor.java index 0157084296..b7410f6fc7 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmActor.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmActor.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FilmActor extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1376192217; + private static final long serialVersionUID = -1500724922; /** * The singleton instance of film_actor diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmCategory.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmCategory.java index a8ea6ff76f..eb1b7f0e6d 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmCategory.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmCategory.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FilmCategory extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -727739384; + private static final long serialVersionUID = -1827377669; /** * The singleton instance of film_category diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmList.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmList.java index cff9085728..9c9d218d49 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmList.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmList.java @@ -8,11 +8,11 @@ package org.jooq.examples.mysql.sakila.tables; * * VIEW */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FilmList extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -280163552; + private static final long serialVersionUID = -1772977389; /** * The singleton instance of film_list diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmText.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmText.java index 4f78bb7b40..859114dd1a 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmText.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmText.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FilmText extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 793216157; + private static final long serialVersionUID = 1089550736; /** * The singleton instance of film_text diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Inventory.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Inventory.java index a479087945..5c6bf26f37 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Inventory.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Inventory.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Inventory extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -601531818; + private static final long serialVersionUID = 275888969; /** * The singleton instance of inventory diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Language.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Language.java index a0c7462b9b..36069a33cb 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Language.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Language.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Language extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1150018250; + private static final long serialVersionUID = -107238211; /** * The singleton instance of language diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/NicerButSlowerFilmList.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/NicerButSlowerFilmList.java index 93f5309f52..1a96cd436b 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/NicerButSlowerFilmList.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/NicerButSlowerFilmList.java @@ -8,11 +8,11 @@ package org.jooq.examples.mysql.sakila.tables; * * VIEW */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class NicerButSlowerFilmList extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 206482185; + private static final long serialVersionUID = 288326902; /** * The singleton instance of nicer_but_slower_film_list diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Payment.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Payment.java index c9477fd562..f6ad30c658 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Payment.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Payment.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Payment extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 188979002; + private static final long serialVersionUID = 263582829; /** * The singleton instance of payment diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Rental.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Rental.java index 84852974aa..c9251f75ae 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Rental.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Rental.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Rental extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1607346682; + private static final long serialVersionUID = -1075816717; /** * The singleton instance of rental diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/SalesByFilmCategory.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/SalesByFilmCategory.java index 7a1c78e8b4..227999ca4f 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/SalesByFilmCategory.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/SalesByFilmCategory.java @@ -8,11 +8,11 @@ package org.jooq.examples.mysql.sakila.tables; * * VIEW */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class SalesByFilmCategory extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 1872656502; + private static final long serialVersionUID = 578034601; /** * The singleton instance of sales_by_film_category diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/SalesByStore.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/SalesByStore.java index ef1f8af900..49bd064885 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/SalesByStore.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/SalesByStore.java @@ -8,11 +8,11 @@ package org.jooq.examples.mysql.sakila.tables; * * VIEW */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class SalesByStore extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -595852613; + private static final long serialVersionUID = 677143406; /** * The singleton instance of sales_by_store diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Staff.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Staff.java index e035506a67..a49fd9e9f1 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Staff.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Staff.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Staff extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 757418646; + private static final long serialVersionUID = 424041673; /** * The singleton instance of staff diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/StaffList.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/StaffList.java index 541795e8d1..7f159348ab 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/StaffList.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/StaffList.java @@ -8,11 +8,11 @@ package org.jooq.examples.mysql.sakila.tables; * * VIEW */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class StaffList extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -1545202730; + private static final long serialVersionUID = -426970295; /** * The singleton instance of staff_list diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Store.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Store.java index a1feefb3b5..9d108f81c8 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Store.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Store.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Store extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 536949998; + private static final long serialVersionUID = -1985836895; /** * The singleton instance of store diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/records/ActorInfoRecord.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/records/ActorInfoRecord.java index dd59bb6699..bc3bccbad5 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/records/ActorInfoRecord.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/records/ActorInfoRecord.java @@ -8,11 +8,11 @@ package org.jooq.examples.mysql.sakila.tables.records; * * VIEW */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class ActorInfoRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1894727407; + private static final long serialVersionUID = 1400853071; /** * An uncommented item @@ -76,14 +76,4 @@ public class ActorInfoRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -526265931; + private static final long serialVersionUID = -2044534742; /** * An uncommented item @@ -35,7 +35,7 @@ public class ActorRecord extends org.jooq.impl.UpdatableRecordImpl fetchFilmActorList() throws java.sql.SQLException { + public java.util.List fetchFilmActorList() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.FilmActor.FILM_ACTOR) .where(org.jooq.examples.mysql.sakila.tables.FilmActor.ACTOR_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Actor.ACTOR_ID))) @@ -90,14 +90,4 @@ public class ActorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1475338319; + private static final long serialVersionUID = 90534782; /** * An uncommented item @@ -35,7 +35,7 @@ public class AddressRecord extends org.jooq.impl.UpdatableRecordImpl fetchCustomerList() throws java.sql.SQLException { + public java.util.List fetchCustomerList() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Customer.CUSTOMER) .where(org.jooq.examples.mysql.sakila.tables.Customer.ADDRESS_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Address.ADDRESS_ID))) @@ -47,7 +47,7 @@ public class AddressRecord extends org.jooq.impl.UpdatableRecordImpl fetchStaffList() throws java.sql.SQLException { + public java.util.List fetchStaffList() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Staff.STAFF) .where(org.jooq.examples.mysql.sakila.tables.Staff.ADDRESS_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Address.ADDRESS_ID))) @@ -59,7 +59,7 @@ public class AddressRecord extends org.jooq.impl.UpdatableRecordImpl fetchStoreList() throws java.sql.SQLException { + public java.util.List fetchStoreList() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Store.STORE) .where(org.jooq.examples.mysql.sakila.tables.Store.ADDRESS_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Address.ADDRESS_ID))) @@ -140,7 +140,7 @@ public class AddressRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.CityRecord fetchCity() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.CityRecord fetchCity() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.City.CITY) .where(org.jooq.examples.mysql.sakila.tables.City.CITY_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Address.CITY_ID))) @@ -195,14 +195,4 @@ public class AddressRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -206769087; + private static final long serialVersionUID = -430880012; /** * An uncommented item @@ -35,7 +35,7 @@ public class CategoryRecord extends org.jooq.impl.UpdatableRecordImpl fetchFilmCategoryList() throws java.sql.SQLException { + public java.util.List fetchFilmCategoryList() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.FilmCategory.FILM_CATEGORY) .where(org.jooq.examples.mysql.sakila.tables.FilmCategory.CATEGORY_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Category.CATEGORY_ID))) @@ -76,14 +76,4 @@ public class CategoryRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 798690616; + private static final long serialVersionUID = 269426923; /** * An uncommented item @@ -35,7 +35,7 @@ public class CityRecord extends org.jooq.impl.UpdatableRecordImpl fetchAddressList() throws java.sql.SQLException { + public java.util.List fetchAddressList() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Address.ADDRESS) .where(org.jooq.examples.mysql.sakila.tables.Address.CITY_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.City.CITY_ID))) @@ -88,7 +88,7 @@ public class CityRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.CountryRecord fetchCountry() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.CountryRecord fetchCountry() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Country.COUNTRY) .where(org.jooq.examples.mysql.sakila.tables.Country.COUNTRY_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.City.COUNTRY_ID))) @@ -115,14 +115,4 @@ public class CityRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -514614941; + private static final long serialVersionUID = -1439031168; /** * An uncommented item @@ -35,7 +35,7 @@ public class CountryRecord extends org.jooq.impl.UpdatableRecordImpl fetchCityList() throws java.sql.SQLException { + public java.util.List fetchCityList() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.City.CITY) .where(org.jooq.examples.mysql.sakila.tables.City.COUNTRY_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Country.COUNTRY_ID))) @@ -76,14 +76,4 @@ public class CountryRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1268346155; + private static final long serialVersionUID = -665119557; /** * An uncommented item @@ -146,14 +146,4 @@ public class CustomerListRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1894973647; + private static final long serialVersionUID = -372163132; /** * An uncommented item @@ -35,7 +35,7 @@ public class CustomerRecord extends org.jooq.impl.UpdatableRecordImpl fetchPaymentList() throws java.sql.SQLException { + public java.util.List fetchPaymentList() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Payment.PAYMENT) .where(org.jooq.examples.mysql.sakila.tables.Payment.CUSTOMER_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Customer.CUSTOMER_ID))) @@ -47,7 +47,7 @@ public class CustomerRecord extends org.jooq.impl.UpdatableRecordImpl fetchRentalList() throws java.sql.SQLException { + public java.util.List fetchRentalList() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Rental.RENTAL) .where(org.jooq.examples.mysql.sakila.tables.Rental.CUSTOMER_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Customer.CUSTOMER_ID))) @@ -86,7 +86,7 @@ public class CustomerRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.StoreRecord fetchStore() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.StoreRecord fetchStore() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Store.STORE) .where(org.jooq.examples.mysql.sakila.tables.Store.STORE_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Customer.STORE_ID))) @@ -167,7 +167,7 @@ public class CustomerRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.AddressRecord fetchAddress() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.AddressRecord fetchAddress() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Address.ADDRESS) .where(org.jooq.examples.mysql.sakila.tables.Address.ADDRESS_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Customer.ADDRESS_ID))) @@ -222,14 +222,4 @@ public class CustomerRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 984586099; + private static final long serialVersionUID = -1884969897; /** * An uncommented item @@ -50,7 +50,7 @@ public class FilmActorRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.ActorRecord fetchActor() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.ActorRecord fetchActor() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Actor.ACTOR) .where(org.jooq.examples.mysql.sakila.tables.Actor.ACTOR_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.FilmActor.ACTOR_ID))) @@ -95,7 +95,7 @@ public class FilmActorRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.FilmRecord fetchFilm() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.FilmRecord fetchFilm() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Film.FILM) .where(org.jooq.examples.mysql.sakila.tables.Film.FILM_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.FilmActor.FILM_ID))) @@ -122,14 +122,4 @@ public class FilmActorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -729546860; + private static final long serialVersionUID = -698267418; /** * An uncommented item @@ -50,7 +50,7 @@ public class FilmCategoryRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.FilmRecord fetchFilm() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.FilmRecord fetchFilm() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Film.FILM) .where(org.jooq.examples.mysql.sakila.tables.Film.FILM_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.FilmCategory.FILM_ID))) @@ -95,7 +95,7 @@ public class FilmCategoryRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.CategoryRecord fetchCategory() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.CategoryRecord fetchCategory() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Category.CATEGORY) .where(org.jooq.examples.mysql.sakila.tables.Category.CATEGORY_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.FilmCategory.CATEGORY_ID))) @@ -122,14 +122,4 @@ public class FilmCategoryRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -40627865; + private static final long serialVersionUID = -1682189513; /** * An uncommented item @@ -132,14 +132,4 @@ public class FilmListRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 134244178; + private static final long serialVersionUID = -1456197169; /** * An uncommented item @@ -35,7 +35,7 @@ public class FilmRecord extends org.jooq.impl.UpdatableRecordImpl fetchFilmActorList() throws java.sql.SQLException { + public java.util.List fetchFilmActorList() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.FilmActor.FILM_ACTOR) .where(org.jooq.examples.mysql.sakila.tables.FilmActor.FILM_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Film.FILM_ID))) @@ -47,7 +47,7 @@ public class FilmRecord extends org.jooq.impl.UpdatableRecordImpl fetchFilmCategoryList() throws java.sql.SQLException { + public java.util.List fetchFilmCategoryList() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.FilmCategory.FILM_CATEGORY) .where(org.jooq.examples.mysql.sakila.tables.FilmCategory.FILM_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Film.FILM_ID))) @@ -59,7 +59,7 @@ public class FilmRecord extends org.jooq.impl.UpdatableRecordImpl fetchInventoryList() throws java.sql.SQLException { + public java.util.List fetchInventoryList() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Inventory.INVENTORY) .where(org.jooq.examples.mysql.sakila.tables.Inventory.FILM_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Film.FILM_ID))) @@ -140,7 +140,7 @@ public class FilmRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.LanguageRecord fetchLanguageByLanguageId() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.LanguageRecord fetchLanguageByLanguageId() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Language.LANGUAGE) .where(org.jooq.examples.mysql.sakila.tables.Language.LANGUAGE_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Film.LANGUAGE_ID))) @@ -179,7 +179,7 @@ public class FilmRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.LanguageRecord fetchLanguageByOriginalLanguageId() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.LanguageRecord fetchLanguageByOriginalLanguageId() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Language.LANGUAGE) .where(org.jooq.examples.mysql.sakila.tables.Language.LANGUAGE_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Film.ORIGINAL_LANGUAGE_ID))) @@ -290,14 +290,4 @@ public class FilmRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -462348424; + private static final long serialVersionUID = -2037559610; /** * An uncommented item @@ -64,14 +64,4 @@ public class FilmTextRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 165193927; + private static final long serialVersionUID = -1209122156; /** * An uncommented item @@ -35,7 +35,7 @@ public class InventoryRecord extends org.jooq.impl.UpdatableRecordImpl fetchRentalList() throws java.sql.SQLException { + public java.util.List fetchRentalList() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Rental.RENTAL) .where(org.jooq.examples.mysql.sakila.tables.Rental.INVENTORY_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Inventory.INVENTORY_ID))) @@ -74,7 +74,7 @@ public class InventoryRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.FilmRecord fetchFilm() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.FilmRecord fetchFilm() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Film.FILM) .where(org.jooq.examples.mysql.sakila.tables.Film.FILM_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Inventory.FILM_ID))) @@ -113,7 +113,7 @@ public class InventoryRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.StoreRecord fetchStore() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.StoreRecord fetchStore() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Store.STORE) .where(org.jooq.examples.mysql.sakila.tables.Store.STORE_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Inventory.STORE_ID))) @@ -140,14 +140,4 @@ public class InventoryRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1696856415; + private static final long serialVersionUID = -2035542076; /** * An uncommented item @@ -35,7 +35,7 @@ public class LanguageRecord extends org.jooq.impl.UpdatableRecordImpl fetchFilmListByLanguageId() throws java.sql.SQLException { + public java.util.List fetchFilmListByLanguageId() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Film.FILM) .where(org.jooq.examples.mysql.sakila.tables.Film.LANGUAGE_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Language.LANGUAGE_ID))) @@ -47,7 +47,7 @@ public class LanguageRecord extends org.jooq.impl.UpdatableRecordImpl fetchFilmListByOriginalLanguageId() throws java.sql.SQLException { + public java.util.List fetchFilmListByOriginalLanguageId() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Film.FILM) .where(org.jooq.examples.mysql.sakila.tables.Film.ORIGINAL_LANGUAGE_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Language.LANGUAGE_ID))) @@ -88,14 +88,4 @@ public class LanguageRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1311609919; + private static final long serialVersionUID = -1150882026; /** * An uncommented item @@ -132,14 +132,4 @@ public class NicerButSlowerFilmListRecord extends org.jooq.impl.TableRecordImpl< public NicerButSlowerFilmListRecord() { super(org.jooq.examples.mysql.sakila.tables.NicerButSlowerFilmList.NICER_BUT_SLOWER_FILM_LIST); } - - /** - * Create an attached NicerButSlowerFilmListRecord - * @deprecated - 1.6.4 [#363, #789] - use the other constructor instead for unattached - * records, or {@link org.jooq.impl.Factory#newRecord(org.jooq.Table)} for attached ones - */ - @Deprecated - public NicerButSlowerFilmListRecord(org.jooq.Configuration configuration) { - super(org.jooq.examples.mysql.sakila.tables.NicerButSlowerFilmList.NICER_BUT_SLOWER_FILM_LIST, configuration); - } } diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/records/PaymentRecord.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/records/PaymentRecord.java index 328bffb46b..24fa4c925f 100644 --- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/records/PaymentRecord.java +++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/records/PaymentRecord.java @@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PaymentRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 752994409; + private static final long serialVersionUID = -1067006230; /** * An uncommented item @@ -62,7 +62,7 @@ public class PaymentRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.CustomerRecord fetchCustomer() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.CustomerRecord fetchCustomer() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Customer.CUSTOMER) .where(org.jooq.examples.mysql.sakila.tables.Customer.CUSTOMER_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Payment.CUSTOMER_ID))) @@ -101,7 +101,7 @@ public class PaymentRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.StaffRecord fetchStaff() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.StaffRecord fetchStaff() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Staff.STAFF) .where(org.jooq.examples.mysql.sakila.tables.Staff.STAFF_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Payment.STAFF_ID))) @@ -140,7 +140,7 @@ public class PaymentRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.RentalRecord fetchRental() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.RentalRecord fetchRental() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Rental.RENTAL) .where(org.jooq.examples.mysql.sakila.tables.Rental.RENTAL_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Payment.RENTAL_ID))) @@ -195,14 +195,4 @@ public class PaymentRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 454811935; + private static final long serialVersionUID = -2029814380; /** * An uncommented item @@ -35,7 +35,7 @@ public class RentalRecord extends org.jooq.impl.UpdatableRecordImpl fetchPaymentList() throws java.sql.SQLException { + public java.util.List fetchPaymentList() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Payment.PAYMENT) .where(org.jooq.examples.mysql.sakila.tables.Payment.RENTAL_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Rental.RENTAL_ID))) @@ -88,7 +88,7 @@ public class RentalRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.InventoryRecord fetchInventory() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.InventoryRecord fetchInventory() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Inventory.INVENTORY) .where(org.jooq.examples.mysql.sakila.tables.Inventory.INVENTORY_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Rental.INVENTORY_ID))) @@ -127,7 +127,7 @@ public class RentalRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.CustomerRecord fetchCustomer() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.CustomerRecord fetchCustomer() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Customer.CUSTOMER) .where(org.jooq.examples.mysql.sakila.tables.Customer.CUSTOMER_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Rental.CUSTOMER_ID))) @@ -180,7 +180,7 @@ public class RentalRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.StaffRecord fetchStaff() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.StaffRecord fetchStaff() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Staff.STAFF) .where(org.jooq.examples.mysql.sakila.tables.Staff.STAFF_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Rental.STAFF_ID))) @@ -207,14 +207,4 @@ public class RentalRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 968990861; + private static final long serialVersionUID = 2096646353; /** * An uncommented item @@ -48,14 +48,4 @@ public class SalesByFilmCategoryRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1940921837; + private static final long serialVersionUID = 1943534958; /** * An uncommented item @@ -62,14 +62,4 @@ public class SalesByStoreRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 713714667; + private static final long serialVersionUID = -1473067299; /** * An uncommented item @@ -132,14 +132,4 @@ public class StaffListRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1559655360; + private static final long serialVersionUID = 726693657; /** * An uncommented item @@ -35,7 +35,7 @@ public class StaffRecord extends org.jooq.impl.UpdatableRecordImpl fetchPaymentList() throws java.sql.SQLException { + public java.util.List fetchPaymentList() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Payment.PAYMENT) .where(org.jooq.examples.mysql.sakila.tables.Payment.STAFF_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Staff.STAFF_ID))) @@ -47,7 +47,7 @@ public class StaffRecord extends org.jooq.impl.UpdatableRecordImpl fetchRentalList() throws java.sql.SQLException { + public java.util.List fetchRentalList() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Rental.RENTAL) .where(org.jooq.examples.mysql.sakila.tables.Rental.STAFF_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Staff.STAFF_ID))) @@ -59,7 +59,7 @@ public class StaffRecord extends org.jooq.impl.UpdatableRecordImpl fetchStoreList() throws java.sql.SQLException { + public java.util.List fetchStoreList() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Store.STORE) .where(org.jooq.examples.mysql.sakila.tables.Store.MANAGER_STAFF_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Staff.STAFF_ID))) @@ -126,7 +126,7 @@ public class StaffRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.AddressRecord fetchAddress() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.AddressRecord fetchAddress() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Address.ADDRESS) .where(org.jooq.examples.mysql.sakila.tables.Address.ADDRESS_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Staff.ADDRESS_ID))) @@ -193,7 +193,7 @@ public class StaffRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.StoreRecord fetchStore() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.StoreRecord fetchStore() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Store.STORE) .where(org.jooq.examples.mysql.sakila.tables.Store.STORE_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Staff.STORE_ID))) @@ -262,14 +262,4 @@ public class StaffRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1869857559; + private static final long serialVersionUID = -939882018; /** * An uncommented item @@ -35,7 +35,7 @@ public class StoreRecord extends org.jooq.impl.UpdatableRecordImpl fetchCustomerList() throws java.sql.SQLException { + public java.util.List fetchCustomerList() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Customer.CUSTOMER) .where(org.jooq.examples.mysql.sakila.tables.Customer.STORE_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Store.STORE_ID))) @@ -47,7 +47,7 @@ public class StoreRecord extends org.jooq.impl.UpdatableRecordImpl fetchInventoryList() throws java.sql.SQLException { + public java.util.List fetchInventoryList() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Inventory.INVENTORY) .where(org.jooq.examples.mysql.sakila.tables.Inventory.STORE_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Store.STORE_ID))) @@ -59,7 +59,7 @@ public class StoreRecord extends org.jooq.impl.UpdatableRecordImpl fetchStaffList() throws java.sql.SQLException { + public java.util.List fetchStaffList() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Staff.STAFF) .where(org.jooq.examples.mysql.sakila.tables.Staff.STORE_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Store.STORE_ID))) @@ -98,7 +98,7 @@ public class StoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.StaffRecord fetchStaff() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.StaffRecord fetchStaff() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Staff.STAFF) .where(org.jooq.examples.mysql.sakila.tables.Staff.STAFF_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Store.MANAGER_STAFF_ID))) @@ -137,7 +137,7 @@ public class StoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.examples.mysql.sakila.tables.records.AddressRecord fetchAddress() throws java.sql.SQLException { + public org.jooq.examples.mysql.sakila.tables.records.AddressRecord fetchAddress() { return create() .selectFrom(org.jooq.examples.mysql.sakila.tables.Address.ADDRESS) .where(org.jooq.examples.mysql.sakila.tables.Address.ADDRESS_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Store.ADDRESS_ID))) @@ -164,14 +164,4 @@ public class StoreRecord extends org.jooq.impl.UpdatableRecordImpl planCur, java.lang.Integer iFormatFlags) throws java.sql.SQLException { + public static java.lang.Object prepareRecords(org.jooq.Configuration configuration, org.jooq.Result planCur, java.lang.Integer iFormatFlags) { org.jooq.examples.oracle.sys.packages.dbms_xplan.PrepareRecords f = new org.jooq.examples.oracle.sys.packages.dbms_xplan.PrepareRecords(); f.setPlanCur(planCur); f.setIFormatFlags(iFormatFlags); @@ -289,8 +294,9 @@ public final class DbmsXplan extends org.jooq.impl.PackageImpl { * @param hasplanstats IN parameter * @param format IN parameter * @param formatFlags OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer validateFormat(org.jooq.Configuration configuration, java.lang.Object hasplanstats, java.lang.String format) throws java.sql.SQLException { + public static java.lang.Integer validateFormat(org.jooq.Configuration configuration, java.lang.Object hasplanstats, java.lang.String format) { org.jooq.examples.oracle.sys.packages.dbms_xplan.ValidateFormat p = new org.jooq.examples.oracle.sys.packages.dbms_xplan.ValidateFormat(); p.setHasplanstats(hasplanstats); p.setFormat(format); diff --git a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/Display.java b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/Display.java index 6eb9167a0e..1e154d7845 100644 --- a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/Display.java +++ b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/Display.java @@ -6,11 +6,11 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Display extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1305056796; + private static final long serialVersionUID = -999589679; /** diff --git a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplayAwr.java b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplayAwr.java index 283e546da9..7aeaf3c72e 100644 --- a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplayAwr.java +++ b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplayAwr.java @@ -6,11 +6,11 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class DisplayAwr extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1055688121; + private static final long serialVersionUID = 739640116; /** diff --git a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplayCursor.java b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplayCursor.java index b0f4be8065..d91a900319 100644 --- a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplayCursor.java +++ b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplayCursor.java @@ -6,11 +6,11 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class DisplayCursor extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 2140765171; + private static final long serialVersionUID = 853080870; /** diff --git a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplaySqlset.java b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplaySqlset.java index 2c02b3985a..2a6f114b28 100644 --- a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplaySqlset.java +++ b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplaySqlset.java @@ -6,11 +6,11 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class DisplaySqlset extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -16201610; + private static final long serialVersionUID = 1932059683; /** diff --git a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/PrepareRecords.java b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/PrepareRecords.java index 4de70a805a..5d3c415a88 100644 --- a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/PrepareRecords.java +++ b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/PrepareRecords.java @@ -6,11 +6,11 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PrepareRecords extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1769968251; + private static final long serialVersionUID = 364672430; /** diff --git a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/ValidateFormat.java b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/ValidateFormat.java index 801b8e4638..33dc3d52c7 100644 --- a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/ValidateFormat.java +++ b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/ValidateFormat.java @@ -6,11 +6,11 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class ValidateFormat extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -705065709; + private static final long serialVersionUID = 2063001862; /** diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/Dbo.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/Dbo.java index 0e1daaa9b6..ce7bf943e3 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/Dbo.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/Dbo.java @@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Dbo extends org.jooq.impl.SchemaImpl { - private static final long serialVersionUID = 984213874; + private static final long serialVersionUID = -783524129; /** * The singleton instance of dbo diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/DboFactory.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/DboFactory.java index 52c45b3009..290c14a9aa 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/DboFactory.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/DboFactory.java @@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class DboFactory extends org.jooq.util.ase.ASEFactory { - private static final long serialVersionUID = -898776501; + private static final long serialVersionUID = 724659326; /** * Create a factory with a connection diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/Keys.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/Keys.java index de14d92319..91c501ad66 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/Keys.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/Keys.java @@ -8,7 +8,7 @@ package org.jooq.test.ase.generatedclasses; * * A class modelling foreign key relationships between tables of the dbo schema */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") @SuppressWarnings({"unchecked"}) public class Keys extends org.jooq.impl.AbstractKeys { diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/TLanguage.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/TLanguage.java index b555827644..fd8fabd179 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/TLanguage.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/TLanguage.java @@ -6,7 +6,7 @@ package org.jooq.test.ase.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum TLanguage implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_11.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_11.java index 40d56f7508..f8a1bdc75a 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_11.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_11.java @@ -6,7 +6,7 @@ package org.jooq.test.ase.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_11 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_12.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_12.java index 2e16ae6926..cafd1eba54 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_12.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_12.java @@ -6,7 +6,7 @@ package org.jooq.test.ase.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_12 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_21.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_21.java index f6b887ede9..d7a9dfdd69 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_21.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_21.java @@ -6,7 +6,7 @@ package org.jooq.test.ase.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_21 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_22.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_22.java index 349bd74c63..426b77884e 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_22.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_22.java @@ -6,7 +6,7 @@ package org.jooq.test.ase.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_22 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_31.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_31.java index 9fee9a632a..2fa750cde1 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_31.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_31.java @@ -6,7 +6,7 @@ package org.jooq.test.ase.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_31 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_32.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_32.java index 921bf8f7e5..6a14473b88 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_32.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_32.java @@ -6,7 +6,7 @@ package org.jooq.test.ase.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_32 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TAuthor.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TAuthor.java index b0fd651b88..af9aab91fe 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TAuthor.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthor extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1431761343; + private static final long serialVersionUID = -586561998; /** * The singleton instance of t_author diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBook.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBook.java index 46a04b6b9d..6ba7a50efd 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBook.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBook.java @@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBook extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -790088763; + private static final long serialVersionUID = 1007751288; /** * The singleton instance of t_book diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBookStore.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBookStore.java index 0bdf186f5e..3c5829cec2 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBookStore.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBookStore.java @@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -134686241; + private static final long serialVersionUID = 835317324; /** * The singleton instance of t_book_store diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBookToBookStore.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBookToBookStore.java index 96d4d1a090..507ef929d1 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBookToBookStore.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBookToBookStore.java @@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 2012394703; + private static final long serialVersionUID = 64296578; /** * The singleton instance of t_book_to_book_store diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TTriggers.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TTriggers.java index dbaf4100f0..079a379f08 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TTriggers.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TTriggers.java @@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TTriggers extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -226452639; + private static final long serialVersionUID = 542749396; /** * The singleton instance of t_triggers diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_639NumbersTable.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_639NumbersTable.java index d2a474ce59..2a65190d9f 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_639NumbersTable.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_639NumbersTable.java @@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -2119293315; + private static final long serialVersionUID = 262393392; /** * The singleton instance of t_639_numbers_table diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_658Ref.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_658Ref.java index d621501fe5..ff1dad5e66 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_658Ref.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_658Ref.java @@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_658Ref extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -1685085118; + private static final long serialVersionUID = 271279215; /** * The singleton instance of t_658_ref diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_725LobTest.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_725LobTest.java index 6334d7f757..96a63a4ac2 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_725LobTest.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_725LobTest.java @@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -19961899; + private static final long serialVersionUID = 282887496; /** * The singleton instance of t_725_lob_test diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_785.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_785.java index afe6ea540d..d3ec171032 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_785.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_785.java @@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_785 extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 538952859; + private static final long serialVersionUID = 474462286; /** * The singleton instance of t_785 diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VAuthor.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VAuthor.java index d81fb4d1aa..bc5893714b 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VAuthor.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VAuthor extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 597389800; + private static final long serialVersionUID = 1867805717; /** * The singleton instance of v_author diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VBook.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VBook.java index f54f6727ef..19b1222395 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VBook.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VBook.java @@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VBook extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -1528306178; + private static final long serialVersionUID = -1849175253; /** * The singleton instance of v_book diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VLibrary.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VLibrary.java index 6f76469ef6..4f8cba1a26 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VLibrary.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VLibrary.java @@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VLibrary extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 440365303; + private static final long serialVersionUID = -1614123228; /** * The singleton instance of v_library diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_64_69.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_64_69.java index be8eec8306..f1959dc686 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_64_69.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_64_69.java @@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1363596992; + private static final long serialVersionUID = -1920642573; /** * The singleton instance of x_test_case_64_69 diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_71.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_71.java index fe871f141e..60640e634e 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_71.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_71.java @@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1817156216; + private static final long serialVersionUID = 2092499813; /** * The singleton instance of x_test_case_71 diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_85.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_85.java index f9ff14e580..67def017c2 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_85.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_85.java @@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1616695788; + private static final long serialVersionUID = 384427201; /** * The singleton instance of x_test_case_85 diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XUnused.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XUnused.java index 3b1cf79e12..c24597191a 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XUnused.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XUnused.java @@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XUnused extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 2092363524; + private static final long serialVersionUID = -991931017; /** * The singleton instance of x_unused diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/records/TAuthorRecord.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/records/TAuthorRecord.java index b199923195..e573d1f9bc 100644 --- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/records/TAuthorRecord.java +++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/records/TAuthorRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -841597885; + private static final long serialVersionUID = 1977373217; /** * An uncommented item @@ -35,7 +35,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByAuthorId() { return create() .selectFrom(org.jooq.test.ase.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.ase.generatedclasses.tables.TBook.AUTHOR_ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.TAuthor.ID))) @@ -47,7 +47,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByCoAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByCoAuthorId() { return create() .selectFrom(org.jooq.test.ase.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.ase.generatedclasses.tables.TBook.CO_AUTHOR_ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.TAuthor.ID))) @@ -130,14 +130,4 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1196650315; + private static final long serialVersionUID = -958711287; /** * An uncommented item @@ -35,7 +35,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.ase.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.ase.generatedclasses.tables.TBookToBookStore.BOOK_ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.TBook.ID))) @@ -74,7 +74,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.ase.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() throws java.sql.SQLException { + public org.jooq.test.ase.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() { return create() .selectFrom(org.jooq.test.ase.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.ase.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.TBook.AUTHOR_ID))) @@ -113,7 +113,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.ase.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() throws java.sql.SQLException { + public org.jooq.test.ase.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() { return create() .selectFrom(org.jooq.test.ase.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.ase.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.TBook.CO_AUTHOR_ID))) @@ -220,14 +220,4 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -315081137; + private static final long serialVersionUID = -924554616; /** * An uncommented item @@ -43,7 +43,7 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.ase.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.ase.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME.equal(getValue(org.jooq.test.ase.generatedclasses.tables.TBookStore.NAME))) @@ -56,14 +56,4 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1458035344; + private static final long serialVersionUID = 447470193; /** * An uncommented item @@ -50,7 +50,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.ase.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() throws java.sql.SQLException { + public org.jooq.test.ase.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() { return create() .selectFrom(org.jooq.test.ase.generatedclasses.tables.TBookStore.T_BOOK_STORE) .where(org.jooq.test.ase.generatedclasses.tables.TBookStore.NAME.equal(getValue(org.jooq.test.ase.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME))) @@ -95,7 +95,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.ase.generatedclasses.tables.records.TBookRecord fetchTBook() throws java.sql.SQLException { + public org.jooq.test.ase.generatedclasses.tables.records.TBookRecord fetchTBook() { return create() .selectFrom(org.jooq.test.ase.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.ase.generatedclasses.tables.TBook.ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.TBookToBookStore.BOOK_ID))) @@ -122,14 +122,4 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -460620652; + private static final long serialVersionUID = -528899752; /** * An uncommented item @@ -64,14 +64,4 @@ public class TTriggersRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1573635226; + private static final long serialVersionUID = 589976175; /** * An uncommented item @@ -204,14 +204,4 @@ public class T_639NumbersTableRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -435743702; + private static final long serialVersionUID = 674679586; /** * An uncommented item @@ -162,14 +162,4 @@ public class T_658RefRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1682670470; + private static final long serialVersionUID = 1919452991; /** * An uncommented item @@ -50,14 +50,4 @@ public class T_725LobTestRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1165079988; + private static final long serialVersionUID = -1832116849; /** * An uncommented item @@ -60,14 +60,4 @@ public class T_785Record extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1732360898; + private static final long serialVersionUID = 611987614; /** * An uncommented item @@ -102,14 +102,4 @@ public class VAuthorRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1085484544; + private static final long serialVersionUID = 85232096; /** * An uncommented item @@ -144,14 +144,4 @@ public class VBookRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1392330862; + private static final long serialVersionUID = 706781914; /** * An uncommented item @@ -46,14 +46,4 @@ public class VLibraryRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -228178225; + private static final long serialVersionUID = -202308626; /** * An uncommented item @@ -35,7 +35,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_71List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_71List() { return create() .selectFrom(org.jooq.test.ase.generatedclasses.tables.XTestCase_71.X_TEST_CASE_71) .where(org.jooq.test.ase.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.XTestCase_64_69.ID))) @@ -74,7 +74,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.ase.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.ase.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.ase.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.ase.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.XTestCase_64_69.UNUSED_ID))) @@ -87,14 +87,4 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -187245894; + private static final long serialVersionUID = 381962349; /** * An uncommented item @@ -62,7 +62,7 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.ase.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() throws java.sql.SQLException { + public org.jooq.test.ase.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() { return create() .selectFrom(org.jooq.test.ase.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.ase.generatedclasses.tables.XTestCase_64_69.ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID))) @@ -75,14 +75,4 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 2021371511; + private static final long serialVersionUID = 178315414; /** * An uncommented item @@ -62,7 +62,7 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.ase.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.ase.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.ase.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.ase.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.XTestCase_85.X_UNUSED_ID))) @@ -100,14 +100,4 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1089598162; + private static final long serialVersionUID = -1328591388; /** * An uncommented item @@ -35,7 +35,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXUnusedList() throws java.sql.SQLException { + public java.util.List fetchXUnusedList() { return create() .selectFrom(org.jooq.test.ase.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.ase.generatedclasses.tables.XUnused.ID_REF.equal(getValue(org.jooq.test.ase.generatedclasses.tables.XUnused.ID))) @@ -48,7 +48,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_85List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_85List() { return create() .selectFrom(org.jooq.test.ase.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85) .where(org.jooq.test.ase.generatedclasses.tables.XTestCase_85.X_UNUSED_ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.XUnused.ID))) @@ -61,7 +61,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_64_69List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_64_69List() { return create() .selectFrom(org.jooq.test.ase.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.ase.generatedclasses.tables.XTestCase_64_69.UNUSED_ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.XUnused.ID))) @@ -132,7 +132,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.ase.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.ase.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.ase.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.ase.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.XUnused.ID_REF))) @@ -316,14 +316,4 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl { diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_11.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_11.java index 4e8d8d3070..43c30ad2b6 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_11.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_11.java @@ -6,7 +6,7 @@ package org.jooq.test.db2.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_11 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_12.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_12.java index f1d35221f2..1817726bff 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_12.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_12.java @@ -6,7 +6,7 @@ package org.jooq.test.db2.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_12 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_21.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_21.java index c5ee9e48ac..336894388d 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_21.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_21.java @@ -6,7 +6,7 @@ package org.jooq.test.db2.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_21 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_22.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_22.java index be8761f0b4..2ab188cfe1 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_22.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_22.java @@ -6,7 +6,7 @@ package org.jooq.test.db2.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_22 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_31.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_31.java index 54c236d00a..ec2446f3cf 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_31.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_31.java @@ -6,7 +6,7 @@ package org.jooq.test.db2.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_31 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_32.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_32.java index a449499b7c..e16edfb9c5 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_32.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/enums/T_658_32.java @@ -6,7 +6,7 @@ package org.jooq.test.db2.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_32 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/F317.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/F317.java index 3e66b9719f..e513979844 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/F317.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/F317.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class F317 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -932245487; + private static final long serialVersionUID = 1997517630; /** diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/FAuthorExists.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/FAuthorExists.java index cf94e74197..e828ca19a6 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/FAuthorExists.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/FAuthorExists.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FAuthorExists extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -142267902; + private static final long serialVersionUID = -271008843; /** diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/FNumber.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/FNumber.java index cf1ad238c0..0418af0da3 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/FNumber.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/FNumber.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FNumber extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 227290717; + private static final long serialVersionUID = 678079498; /** diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/FOne.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/FOne.java index e23bd13366..046c1798ed 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/FOne.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/FOne.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FOne extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1138480417; + private static final long serialVersionUID = 749099540; /** diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/P391.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/P391.java index 3ba588891f..e30367d371 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/P391.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/P391.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class P391 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 471428826; + private static final long serialVersionUID = 203419975; /** diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/PAuthorExists.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/PAuthorExists.java index ed70e5737f..344d658d57 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/PAuthorExists.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/PAuthorExists.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PAuthorExists extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -420909316; + private static final long serialVersionUID = 1841688303; /** diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/PCreateAuthor.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/PCreateAuthor.java index 30e38cc5db..dfbb88e2ec 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/PCreateAuthor.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/PCreateAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PCreateAuthor extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1567516467; + private static final long serialVersionUID = 925307066; /** diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/PCreateAuthorByName.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/PCreateAuthorByName.java index e77c109a7e..2d250676e6 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/PCreateAuthorByName.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/PCreateAuthorByName.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PCreateAuthorByName extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -304742715; + private static final long serialVersionUID = 743389112; /** diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/PUnused.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/PUnused.java index 4916bf8c07..d2358e3530 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/PUnused.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/routines/PUnused.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PUnused extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -25203514; + private static final long serialVersionUID = 1859434297; /** diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/TAuthor.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/TAuthor.java index 022b2c9bd3..25e7e64ca4 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/TAuthor.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/TAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthor extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1123082110; + private static final long serialVersionUID = 1399734897; /** * The singleton instance of T_AUTHOR diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/TBook.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/TBook.java index 3400cac22a..2c93b3a1a8 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/TBook.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/TBook.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBook extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1026114467; + private static final long serialVersionUID = -340139056; /** * The singleton instance of T_BOOK diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/TBookStore.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/TBookStore.java index 5251833432..386da40b93 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/TBookStore.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/TBookStore.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -867156576; + private static final long serialVersionUID = -713600115; /** * The singleton instance of T_BOOK_STORE diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/TBookToBookStore.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/TBookToBookStore.java index bca8b683bc..64a486a897 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/TBookToBookStore.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/TBookToBookStore.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 611394060; + private static final long serialVersionUID = 1483181887; /** * The singleton instance of T_BOOK_TO_BOOK_STORE diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/TTriggers.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/TTriggers.java index 60fb80a6c9..0fdc5feb71 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/TTriggers.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/TTriggers.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TTriggers extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1423878581; + private static final long serialVersionUID = -698938910; /** * The singleton instance of T_TRIGGERS diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/T_639NumbersTable.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/T_639NumbersTable.java index c8132c4287..17296d079e 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/T_639NumbersTable.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/T_639NumbersTable.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -989680217; + private static final long serialVersionUID = 1544215450; /** * The singleton instance of T_639_NUMBERS_TABLE diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/T_658Ref.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/T_658Ref.java index 3751fc071b..66afb2e7fc 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/T_658Ref.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/T_658Ref.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_658Ref extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -1204642078; + private static final long serialVersionUID = -1262909041; /** * The singleton instance of T_658_REF diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/T_725LobTest.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/T_725LobTest.java index e8a5bc7d47..05cc250cd5 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/T_725LobTest.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/T_725LobTest.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 330648553; + private static final long serialVersionUID = 2141533206; /** * The singleton instance of T_725_LOB_TEST diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/T_785.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/T_785.java index 3c2957dea3..52a934bcae 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/T_785.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/T_785.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_785 extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -1604530551; + private static final long serialVersionUID = -1691504452; /** * The singleton instance of T_785 diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/VAuthor.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/VAuthor.java index 4e6e695be0..60a283a5c7 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/VAuthor.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/VAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VAuthor extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -1014309752; + private static final long serialVersionUID = -1452474315; /** * The singleton instance of V_AUTHOR diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/VBook.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/VBook.java index c6b3ffea4a..4534194713 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/VBook.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/VBook.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VBook extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -1935753872; + private static final long serialVersionUID = -1053289635; /** * The singleton instance of V_BOOK diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/VLibrary.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/VLibrary.java index e36a73d9ee..f09ce86797 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/VLibrary.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/VLibrary.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VLibrary extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 967035771; + private static final long serialVersionUID = -403051736; /** * The singleton instance of V_LIBRARY diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/XTestCase_64_69.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/XTestCase_64_69.java index cbd1a04daf..e0b91f208d 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/XTestCase_64_69.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/XTestCase_64_69.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1902645022; + private static final long serialVersionUID = 560321745; /** * The singleton instance of X_TEST_CASE_64_69 diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/XTestCase_71.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/XTestCase_71.java index 9967cdf532..6e8f7b113b 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/XTestCase_71.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/XTestCase_71.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1336579886; + private static final long serialVersionUID = -2047243259; /** * The singleton instance of X_TEST_CASE_71 diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/XTestCase_85.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/XTestCase_85.java index fc125c6ee2..5d96795694 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/XTestCase_85.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/XTestCase_85.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1236022398; + private static final long serialVersionUID = 276916655; /** * The singleton instance of X_TEST_CASE_85 diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/XUnused.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/XUnused.java index e7be14a675..05fad19bff 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/XUnused.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/XUnused.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XUnused extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1973253947; + private static final long serialVersionUID = -911092114; /** * The singleton instance of X_UNUSED diff --git a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/records/TAuthorRecord.java b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/records/TAuthorRecord.java index 32074e98db..fb309c8b98 100644 --- a/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/records/TAuthorRecord.java +++ b/jOOQ-test/src/org/jooq/test/db2/generatedclasses/tables/records/TAuthorRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.db2.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1808851075; + private static final long serialVersionUID = 1694080540; /** * An uncommented item @@ -35,7 +35,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByAuthorId() { return create() .selectFrom(org.jooq.test.db2.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.db2.generatedclasses.tables.TBook.AUTHOR_ID.equal(getValue(org.jooq.test.db2.generatedclasses.tables.TAuthor.ID))) @@ -47,7 +47,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByCoAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByCoAuthorId() { return create() .selectFrom(org.jooq.test.db2.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.db2.generatedclasses.tables.TBook.CO_AUTHOR_ID.equal(getValue(org.jooq.test.db2.generatedclasses.tables.TAuthor.ID))) @@ -130,14 +130,4 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 176244619; + private static final long serialVersionUID = -21403870; /** * An uncommented item @@ -35,7 +35,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.db2.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.db2.generatedclasses.tables.TBookToBookStore.BOOK_ID.equal(getValue(org.jooq.test.db2.generatedclasses.tables.TBook.ID))) @@ -74,7 +74,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.db2.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() throws java.sql.SQLException { + public org.jooq.test.db2.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() { return create() .selectFrom(org.jooq.test.db2.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.db2.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.db2.generatedclasses.tables.TBook.AUTHOR_ID))) @@ -113,7 +113,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.db2.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() throws java.sql.SQLException { + public org.jooq.test.db2.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() { return create() .selectFrom(org.jooq.test.db2.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.db2.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.db2.generatedclasses.tables.TBook.CO_AUTHOR_ID))) @@ -220,14 +220,4 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 154875595; + private static final long serialVersionUID = -1519269143; /** * An uncommented item @@ -43,7 +43,7 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.db2.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.db2.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME.equal(getValue(org.jooq.test.db2.generatedclasses.tables.TBookStore.NAME))) @@ -56,14 +56,4 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1628632108; + private static final long serialVersionUID = 1674879412; /** * An uncommented item @@ -50,7 +50,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.db2.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() throws java.sql.SQLException { + public org.jooq.test.db2.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() { return create() .selectFrom(org.jooq.test.db2.generatedclasses.tables.TBookStore.T_BOOK_STORE) .where(org.jooq.test.db2.generatedclasses.tables.TBookStore.NAME.equal(getValue(org.jooq.test.db2.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME))) @@ -95,7 +95,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.db2.generatedclasses.tables.records.TBookRecord fetchTBook() throws java.sql.SQLException { + public org.jooq.test.db2.generatedclasses.tables.records.TBookRecord fetchTBook() { return create() .selectFrom(org.jooq.test.db2.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.db2.generatedclasses.tables.TBook.ID.equal(getValue(org.jooq.test.db2.generatedclasses.tables.TBookToBookStore.BOOK_ID))) @@ -122,14 +122,4 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1154501368; + private static final long serialVersionUID = -523476037; /** * An uncommented item @@ -64,14 +64,4 @@ public class TTriggersRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -695918090; + private static final long serialVersionUID = 1858038686; /** * An uncommented item @@ -190,14 +190,4 @@ public class T_639NumbersTableRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1248529298; + private static final long serialVersionUID = -520777015; /** * An uncommented item @@ -162,14 +162,4 @@ public class T_658RefRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 2042974052; + private static final long serialVersionUID = -626682144; /** * An uncommented item @@ -50,14 +50,4 @@ public class T_725LobTestRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 770394766; + private static final long serialVersionUID = -244456052; /** * An uncommented item @@ -60,14 +60,4 @@ public class T_785Record extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1739179582; + private static final long serialVersionUID = -632236515; /** * An uncommented item @@ -102,14 +102,4 @@ public class VAuthorRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -143179834; + private static final long serialVersionUID = 637188005; /** * An uncommented item @@ -144,14 +144,4 @@ public class VBookRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1545486446; + private static final long serialVersionUID = 17294617; /** * An uncommented item @@ -46,14 +46,4 @@ public class VLibraryRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -71557577; + private static final long serialVersionUID = -1142748885; /** * An uncommented item @@ -35,7 +35,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_71List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_71List() { return create() .selectFrom(org.jooq.test.db2.generatedclasses.tables.XTestCase_71.X_TEST_CASE_71) .where(org.jooq.test.db2.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID.equal(getValueAsShort(org.jooq.test.db2.generatedclasses.tables.XTestCase_64_69.ID))) @@ -74,7 +74,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.db2.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.db2.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.db2.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.db2.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.db2.generatedclasses.tables.XTestCase_64_69.UNUSED_ID))) @@ -87,14 +87,4 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1047223904; + private static final long serialVersionUID = -1619276774; /** * An uncommented item @@ -62,7 +62,7 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.db2.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() throws java.sql.SQLException { + public org.jooq.test.db2.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() { return create() .selectFrom(org.jooq.test.db2.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.db2.generatedclasses.tables.XTestCase_64_69.ID.equal(getValueAsInteger(org.jooq.test.db2.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID))) @@ -75,14 +75,4 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -962308697; + private static final long serialVersionUID = -1844842961; /** * An uncommented item @@ -62,7 +62,7 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.db2.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.db2.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.db2.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.db2.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.db2.generatedclasses.tables.XTestCase_85.X_UNUSED_ID))) @@ -100,14 +100,4 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -867729262; + private static final long serialVersionUID = -1565988399; /** * An uncommented item @@ -35,7 +35,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_85List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_85List() { return create() .selectFrom(org.jooq.test.db2.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85) .where(org.jooq.test.db2.generatedclasses.tables.XTestCase_85.X_UNUSED_ID.equal(getValue(org.jooq.test.db2.generatedclasses.tables.XUnused.ID))) @@ -48,7 +48,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXUnusedList() throws java.sql.SQLException { + public java.util.List fetchXUnusedList() { return create() .selectFrom(org.jooq.test.db2.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.db2.generatedclasses.tables.XUnused.ID_REF.equal(getValue(org.jooq.test.db2.generatedclasses.tables.XUnused.ID))) @@ -61,7 +61,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_64_69List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_64_69List() { return create() .selectFrom(org.jooq.test.db2.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.db2.generatedclasses.tables.XTestCase_64_69.UNUSED_ID.equal(getValue(org.jooq.test.db2.generatedclasses.tables.XUnused.ID))) @@ -132,7 +132,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.db2.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.db2.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.db2.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.db2.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.db2.generatedclasses.tables.XUnused.ID_REF))) @@ -352,14 +352,4 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl { diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_11.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_11.java index d1c2318835..22b1703da2 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_11.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_11.java @@ -6,7 +6,7 @@ package org.jooq.test.derby.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_11 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_12.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_12.java index ab142f799b..db5d4114c6 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_12.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_12.java @@ -6,7 +6,7 @@ package org.jooq.test.derby.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_12 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_21.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_21.java index 110f79ff02..62f14eb13e 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_21.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_21.java @@ -6,7 +6,7 @@ package org.jooq.test.derby.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_21 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_22.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_22.java index f31e559291..e6943de418 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_22.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_22.java @@ -6,7 +6,7 @@ package org.jooq.test.derby.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_22 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_31.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_31.java index 9db2c8eac3..a750a31889 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_31.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_31.java @@ -6,7 +6,7 @@ package org.jooq.test.derby.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_31 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_32.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_32.java index ce8e6b2c8a..c602743c8e 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_32.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/enums/T_658_32.java @@ -6,7 +6,7 @@ package org.jooq.test.derby.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_32 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/TAuthor.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/TAuthor.java index 4f47923c59..26a3bb5756 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/TAuthor.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/TAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.derby.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthor extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1598701010; + private static final long serialVersionUID = -1542851615; /** * The singleton instance of T_AUTHOR diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/TBook.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/TBook.java index 8bd5ae567c..e225838fc9 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/TBook.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/TBook.java @@ -6,11 +6,11 @@ package org.jooq.test.derby.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBook extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 750771858; + private static final long serialVersionUID = -1582517441; /** * The singleton instance of T_BOOK diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/TBookStore.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/TBookStore.java index 1f6973edf5..17adf3c2d3 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/TBookStore.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/TBookStore.java @@ -6,11 +6,11 @@ package org.jooq.test.derby.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -450365456; + private static final long serialVersionUID = -487370083; /** * The singleton instance of T_BOOK_STORE diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/TBookToBookStore.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/TBookToBookStore.java index 8a947f839e..45f01494c4 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/TBookToBookStore.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/TBookToBookStore.java @@ -6,11 +6,11 @@ package org.jooq.test.derby.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1075478404; + private static final long serialVersionUID = 1074294391; /** * The singleton instance of T_BOOK_TO_BOOK_STORE diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/TTriggers.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/TTriggers.java index 01c2ad0fb1..379faae758 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/TTriggers.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/TTriggers.java @@ -6,11 +6,11 @@ package org.jooq.test.derby.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TTriggers extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 39957604; + private static final long serialVersionUID = -1370305513; /** * The singleton instance of T_TRIGGERS diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/T_639NumbersTable.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/T_639NumbersTable.java index 2635d67ec4..cf8ea239cf 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/T_639NumbersTable.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/T_639NumbersTable.java @@ -6,11 +6,11 @@ package org.jooq.test.derby.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1633756407; + private static final long serialVersionUID = -1553549142; /** * The singleton instance of T_639_NUMBERS_TABLE diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/T_658Ref.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/T_658Ref.java index 3274a169d9..e89200c4ce 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/T_658Ref.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/T_658Ref.java @@ -6,11 +6,11 @@ package org.jooq.test.derby.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_658Ref extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -2144522714; + private static final long serialVersionUID = -624414509; /** * The singleton instance of T_658_REF diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/T_725LobTest.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/T_725LobTest.java index 1e065b46b6..a01977ee7e 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/T_725LobTest.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/T_725LobTest.java @@ -6,11 +6,11 @@ package org.jooq.test.derby.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -394970319; + private static final long serialVersionUID = -1433774434; /** * The singleton instance of T_725_LOB_TEST diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/T_785.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/T_785.java index 0159328cc4..4cddfa531b 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/T_785.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/T_785.java @@ -6,11 +6,11 @@ package org.jooq.test.derby.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_785 extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 831774397; + private static final long serialVersionUID = -1241638928; /** * The singleton instance of T_785 diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/VAuthor.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/VAuthor.java index 46c5ca218d..666ac2369e 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/VAuthor.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/VAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.derby.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VAuthor extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -973280028; + private static final long serialVersionUID = 489913873; /** * The singleton instance of V_AUTHOR diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/VBook.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/VBook.java index aad0b43e71..82a59b83cb 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/VBook.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/VBook.java @@ -6,11 +6,11 @@ package org.jooq.test.derby.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VBook extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 1154448263; + private static final long serialVersionUID = -1012140998; /** * The singleton instance of V_BOOK diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/VLibrary.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/VLibrary.java index c16038ba15..6918f7671d 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/VLibrary.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/VLibrary.java @@ -6,11 +6,11 @@ package org.jooq.test.derby.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VLibrary extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -997494617; + private static final long serialVersionUID = -184944684; /** * The singleton instance of V_LIBRARY diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/XTestCase_64_69.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/XTestCase_64_69.java index 1b6eef92df..9e72c82cd0 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/XTestCase_64_69.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/XTestCase_64_69.java @@ -6,11 +6,11 @@ package org.jooq.test.derby.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1974554432; + private static final long serialVersionUID = -1339471437; /** * The singleton instance of X_TEST_CASE_64_69 diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/XTestCase_71.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/XTestCase_71.java index 08bd06e2cf..61fa877c21 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/XTestCase_71.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/XTestCase_71.java @@ -6,11 +6,11 @@ package org.jooq.test.derby.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1578932718; + private static final long serialVersionUID = -241281345; /** * The singleton instance of X_TEST_CASE_71 diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/XTestCase_85.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/XTestCase_85.java index 60cb2e98d5..1391ef1460 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/XTestCase_85.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/XTestCase_85.java @@ -6,11 +6,11 @@ package org.jooq.test.derby.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -621415086; + private static final long serialVersionUID = -2045272193; /** * The singleton instance of X_TEST_CASE_85 diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/XUnused.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/XUnused.java index 966999c6e1..9e9aba5857 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/XUnused.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/XUnused.java @@ -6,11 +6,11 @@ package org.jooq.test.derby.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XUnused extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1579499983; + private static final long serialVersionUID = -677269532; /** * The singleton instance of X_UNUSED diff --git a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/records/TAuthorRecord.java b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/records/TAuthorRecord.java index 73490d17d9..9cc2160a31 100644 --- a/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/records/TAuthorRecord.java +++ b/jOOQ-test/src/org/jooq/test/derby/generatedclasses/tables/records/TAuthorRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.derby.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1671812355; + private static final long serialVersionUID = 838863576; /** * An uncommented item @@ -35,7 +35,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByAuthorId() { return create() .selectFrom(org.jooq.test.derby.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.derby.generatedclasses.tables.TBook.AUTHOR_ID.equal(getValue(org.jooq.test.derby.generatedclasses.tables.TAuthor.ID))) @@ -47,7 +47,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByCoAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByCoAuthorId() { return create() .selectFrom(org.jooq.test.derby.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.derby.generatedclasses.tables.TBook.CO_AUTHOR_ID.equal(getValue(org.jooq.test.derby.generatedclasses.tables.TAuthor.ID))) @@ -130,14 +130,4 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -459862795; + private static final long serialVersionUID = 45271172; /** * An uncommented item @@ -35,7 +35,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.derby.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.derby.generatedclasses.tables.TBookToBookStore.BOOK_ID.equal(getValue(org.jooq.test.derby.generatedclasses.tables.TBook.ID))) @@ -74,7 +74,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.derby.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() throws java.sql.SQLException { + public org.jooq.test.derby.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() { return create() .selectFrom(org.jooq.test.derby.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.derby.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.derby.generatedclasses.tables.TBook.AUTHOR_ID))) @@ -113,7 +113,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.derby.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() throws java.sql.SQLException { + public org.jooq.test.derby.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() { return create() .selectFrom(org.jooq.test.derby.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.derby.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.derby.generatedclasses.tables.TBook.CO_AUTHOR_ID))) @@ -220,14 +220,4 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1272821317; + private static final long serialVersionUID = 575602781; /** * An uncommented item @@ -43,7 +43,7 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.derby.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.derby.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME.equal(getValue(org.jooq.test.derby.generatedclasses.tables.TBookStore.NAME))) @@ -56,14 +56,4 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 925354740; + private static final long serialVersionUID = 839734048; /** * An uncommented item @@ -50,7 +50,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.derby.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() throws java.sql.SQLException { + public org.jooq.test.derby.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() { return create() .selectFrom(org.jooq.test.derby.generatedclasses.tables.TBookStore.T_BOOK_STORE) .where(org.jooq.test.derby.generatedclasses.tables.TBookStore.NAME.equal(getValue(org.jooq.test.derby.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME))) @@ -95,7 +95,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.derby.generatedclasses.tables.records.TBookRecord fetchTBook() throws java.sql.SQLException { + public org.jooq.test.derby.generatedclasses.tables.records.TBookRecord fetchTBook() { return create() .selectFrom(org.jooq.test.derby.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.derby.generatedclasses.tables.TBook.ID.equal(getValue(org.jooq.test.derby.generatedclasses.tables.TBookToBookStore.BOOK_ID))) @@ -122,14 +122,4 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1866987640; + private static final long serialVersionUID = -173899881; /** * An uncommented item @@ -64,14 +64,4 @@ public class TTriggersRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1988695810; + private static final long serialVersionUID = 599782306; /** * An uncommented item @@ -190,14 +190,4 @@ public class T_639NumbersTableRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1177159858; + private static final long serialVersionUID = -1506089163; /** * An uncommented item @@ -162,14 +162,4 @@ public class T_658RefRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 96492028; + private static final long serialVersionUID = -140672812; /** * An uncommented item @@ -50,14 +50,4 @@ public class T_725LobTestRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1440291062; + private static final long serialVersionUID = -997025744; /** * An uncommented item @@ -60,14 +60,4 @@ public class T_785Record extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -596079294; + private static final long serialVersionUID = -1289851927; /** * An uncommented item @@ -102,14 +102,4 @@ public class VAuthorRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1599105986; + private static final long serialVersionUID = 849942249; /** * An uncommented item @@ -144,14 +144,4 @@ public class VBookRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1917966418; + private static final long serialVersionUID = 933451557; /** * An uncommented item @@ -46,14 +46,4 @@ public class VLibraryRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -933936381; + private static final long serialVersionUID = -664168915; /** * An uncommented item @@ -35,7 +35,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_71List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_71List() { return create() .selectFrom(org.jooq.test.derby.generatedclasses.tables.XTestCase_71.X_TEST_CASE_71) .where(org.jooq.test.derby.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID.equal(getValue(org.jooq.test.derby.generatedclasses.tables.XTestCase_64_69.ID))) @@ -74,7 +74,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.derby.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.derby.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.derby.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.derby.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.derby.generatedclasses.tables.XTestCase_64_69.UNUSED_ID))) @@ -87,14 +87,4 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 235040362; + private static final long serialVersionUID = 181897906; /** * An uncommented item @@ -62,7 +62,7 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.derby.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() throws java.sql.SQLException { + public org.jooq.test.derby.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() { return create() .selectFrom(org.jooq.test.derby.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.derby.generatedclasses.tables.XTestCase_64_69.ID.equal(getValue(org.jooq.test.derby.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID))) @@ -75,14 +75,4 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -230612343; + private static final long serialVersionUID = -1121067675; /** * An uncommented item @@ -62,7 +62,7 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.derby.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.derby.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.derby.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.derby.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.derby.generatedclasses.tables.XTestCase_85.X_UNUSED_ID))) @@ -100,14 +100,4 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 469450348; + private static final long serialVersionUID = 101963893; /** * An uncommented item @@ -35,7 +35,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXUnusedList() throws java.sql.SQLException { + public java.util.List fetchXUnusedList() { return create() .selectFrom(org.jooq.test.derby.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.derby.generatedclasses.tables.XUnused.ID_REF.equal(getValue(org.jooq.test.derby.generatedclasses.tables.XUnused.ID))) @@ -48,7 +48,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_85List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_85List() { return create() .selectFrom(org.jooq.test.derby.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85) .where(org.jooq.test.derby.generatedclasses.tables.XTestCase_85.X_UNUSED_ID.equal(getValue(org.jooq.test.derby.generatedclasses.tables.XUnused.ID))) @@ -61,7 +61,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_64_69List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_64_69List() { return create() .selectFrom(org.jooq.test.derby.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.derby.generatedclasses.tables.XTestCase_64_69.UNUSED_ID.equal(getValue(org.jooq.test.derby.generatedclasses.tables.XUnused.ID))) @@ -132,7 +132,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.derby.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.derby.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.derby.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.derby.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.derby.generatedclasses.tables.XUnused.ID_REF))) @@ -316,14 +316,4 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fGetOneCursor(org.jooq.Configuration configuration, java.lang.Object[] p2) throws java.sql.SQLException { + public static org.jooq.Result fGetOneCursor(org.jooq.Configuration configuration, java.lang.Object[] p2) { org.jooq.test.h2.generatedclasses.routines.FGetOneCursor f = new org.jooq.test.h2.generatedclasses.routines.FGetOneCursor(); f.setP2(p2); @@ -256,8 +262,9 @@ public final class Routines { * Invoke F_NUMBER * * @param p1 + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer fNumber(org.jooq.Configuration configuration, java.lang.Integer p1) throws java.sql.SQLException { + public static java.lang.Integer fNumber(org.jooq.Configuration configuration, java.lang.Integer p1) { org.jooq.test.h2.generatedclasses.routines.FNumber f = new org.jooq.test.h2.generatedclasses.routines.FNumber(); f.setP1(p1); @@ -292,8 +299,9 @@ public final class Routines { /** * Invoke F_ONE * + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer fOne(org.jooq.Configuration configuration) throws java.sql.SQLException { + public static java.lang.Integer fOne(org.jooq.Configuration configuration) { org.jooq.test.h2.generatedclasses.routines.FOne f = new org.jooq.test.h2.generatedclasses.routines.FOne(); f.execute(configuration); @@ -313,8 +321,9 @@ public final class Routines { /** * Invoke P_CREATE_AUTHOR * + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static void pCreateAuthor(org.jooq.Configuration configuration) throws java.sql.SQLException { + public static void pCreateAuthor(org.jooq.Configuration configuration) { org.jooq.test.h2.generatedclasses.routines.PCreateAuthor p = new org.jooq.test.h2.generatedclasses.routines.PCreateAuthor(); p.execute(configuration); @@ -325,8 +334,9 @@ public final class Routines { * * @param p2 IN parameter * @param p3 IN parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static void pCreateAuthorByName(org.jooq.Configuration configuration, java.lang.String p2, java.lang.String p3) throws java.sql.SQLException { + public static void pCreateAuthorByName(org.jooq.Configuration configuration, java.lang.String p2, java.lang.String p3) { org.jooq.test.h2.generatedclasses.routines.PCreateAuthorByName p = new org.jooq.test.h2.generatedclasses.routines.PCreateAuthorByName(); p.setP2(p2); p.setP3(p3); diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/Sequences.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/Sequences.java index ebb70bacad..7a7f8e2800 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/Sequences.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/Sequences.java @@ -8,7 +8,7 @@ package org.jooq.test.h2.generatedclasses; * * Convenience access to all sequences in PUBLIC */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public final class Sequences { diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/TLanguage.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/TLanguage.java index e8e3ab16d6..c075897e89 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/TLanguage.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/TLanguage.java @@ -8,7 +8,7 @@ package org.jooq.test.h2.generatedclasses.enums; * * An entity holding language master data */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum TLanguage implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_11.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_11.java index ce6bf253d0..1fc7e0e9ed 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_11.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_11.java @@ -6,7 +6,7 @@ package org.jooq.test.h2.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_11 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_12.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_12.java index 9198dcdd70..f1d5fff00c 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_12.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_12.java @@ -6,7 +6,7 @@ package org.jooq.test.h2.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_12 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_21.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_21.java index 1c14e4f0ce..1a653e9edc 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_21.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_21.java @@ -6,7 +6,7 @@ package org.jooq.test.h2.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_21 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_22.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_22.java index 8f111843d9..462283ef3b 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_22.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_22.java @@ -6,7 +6,7 @@ package org.jooq.test.h2.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_22 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_31.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_31.java index 676d48b373..e498cd9642 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_31.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_31.java @@ -6,7 +6,7 @@ package org.jooq.test.h2.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_31 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_32.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_32.java index 4f9ca64384..4dce8f72df 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_32.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/enums/T_658_32.java @@ -6,7 +6,7 @@ package org.jooq.test.h2.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_32 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/F317.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/F317.java index cddfb00ac0..aeb2a26367 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/F317.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/F317.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class F317 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -859965901; + private static final long serialVersionUID = 2069797216; /** diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FArrays1.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FArrays1.java index 3062fc0f67..7d24053b0c 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FArrays1.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FArrays1.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FArrays1 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 837961823; + private static final long serialVersionUID = -929776180; /** diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FArrays2.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FArrays2.java index c5b4158429..f91dea1687 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FArrays2.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FArrays2.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FArrays2 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 2089855616; + private static final long serialVersionUID = 322117613; /** diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FArrays3.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FArrays3.java index fe9cebbffe..3f049ce2bf 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FArrays3.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FArrays3.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FArrays3 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -953217887; + private static final long serialVersionUID = 1574011406; /** diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FAuthorExists.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FAuthorExists.java index 0f3ea4c49e..1ee9bfe719 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FAuthorExists.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FAuthorExists.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FAuthorExists extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1535556001; + private static final long serialVersionUID = 648167502; /** diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FGetOneCursor.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FGetOneCursor.java index 51fa2ecbb6..bb96c9ab8c 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FGetOneCursor.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FGetOneCursor.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FGetOneCursor extends org.jooq.impl.AbstractRoutine> { - private static final long serialVersionUID = 368861704; + private static final long serialVersionUID = 846851259; /** diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FNumber.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FNumber.java index d289be8c56..ab5880081c 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FNumber.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FNumber.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FNumber extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 602527074; + private static final long serialVersionUID = 1420388949; /** diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FOne.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FOne.java index 31046a25da..2aea38f361 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FOne.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/FOne.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FOne extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -2028274969; + private static final long serialVersionUID = 1877311450; /** diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/PCreateAuthor.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/PCreateAuthor.java index 365d369816..36884dbbbd 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/PCreateAuthor.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/PCreateAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PCreateAuthor extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -81537269; + private static final long serialVersionUID = -1883681032; /** diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/PCreateAuthorByName.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/PCreateAuthorByName.java index df434ecd7c..3a6c8c6efc 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/PCreateAuthorByName.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/routines/PCreateAuthorByName.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PCreateAuthorByName extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -2093761551; + private static final long serialVersionUID = -1469057564; /** diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TArrays.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TArrays.java index 864c6b6dbd..8720358bd8 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TArrays.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TArrays.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TArrays extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 648520429; + private static final long serialVersionUID = -1156614752; /** * The singleton instance of T_ARRAYS diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TAuthor.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TAuthor.java index 0e264be8d9..cd1c3b76ac 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TAuthor.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TAuthor.java @@ -8,11 +8,11 @@ package org.jooq.test.h2.generatedclasses.tables; * * An entity holding authors of books */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthor extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -577326486; + private static final long serialVersionUID = 1690961821; /** * The singleton instance of T_AUTHOR diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TBook.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TBook.java index ef77220100..2bdb15a12a 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TBook.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TBook.java @@ -8,11 +8,11 @@ package org.jooq.test.h2.generatedclasses.tables; * * An entity holding books */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBook extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 576857643; + private static final long serialVersionUID = 580774104; /** * The singleton instance of T_BOOK diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TBookStore.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TBookStore.java index 73c6047a7b..d95d582015 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TBookStore.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TBookStore.java @@ -8,11 +8,11 @@ package org.jooq.test.h2.generatedclasses.tables; * * A book store */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -275293301; + private static final long serialVersionUID = 252102974; /** * The singleton instance of T_BOOK_STORE diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TBookToBookStore.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TBookToBookStore.java index ad68f2d988..eb4f999b25 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TBookToBookStore.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TBookToBookStore.java @@ -8,11 +8,11 @@ package org.jooq.test.h2.generatedclasses.tables; * * An m:n relation between books and book stores */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 762948960; + private static final long serialVersionUID = 356180109; /** * The singleton instance of T_BOOK_TO_BOOK_STORE diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TTriggers.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TTriggers.java index 5f5cda62c7..addc19c472 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TTriggers.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/TTriggers.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TTriggers extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1245975840; + private static final long serialVersionUID = 1720115667; /** * The singleton instance of T_TRIGGERS diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/T_639NumbersTable.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/T_639NumbersTable.java index 41cdca3c38..593d0a2893 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/T_639NumbersTable.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/T_639NumbersTable.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1559510745; + private static final long serialVersionUID = 410091910; /** * The singleton instance of T_639_NUMBERS_TABLE diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/T_658Ref.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/T_658Ref.java index bfda4fce1d..60a5246bd5 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/T_658Ref.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/T_658Ref.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_658Ref extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 663856566; + private static final long serialVersionUID = 7494249; /** * The singleton instance of T_658_REF diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/T_725LobTest.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/T_725LobTest.java index 879e18b34c..5558915e2a 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/T_725LobTest.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/T_725LobTest.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 87062859; + private static final long serialVersionUID = 886604856; /** * The singleton instance of T_725_LOB_TEST diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/T_785.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/T_785.java index 4033d4413d..d34f15b528 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/T_785.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/T_785.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_785 extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -1585564907; + private static final long serialVersionUID = -352013630; /** * The singleton instance of T_785 diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/T_877.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/T_877.java index b0ccd65853..0d86507f8b 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/T_877.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/T_877.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_877 extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -75031793; + private static final long serialVersionUID = 151746684; /** * The singleton instance of T_877 diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/VAuthor.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/VAuthor.java index d4f1331b1b..c61ae67745 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/VAuthor.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/VAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VAuthor extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 462275090; + private static final long serialVersionUID = 1314634437; /** * The singleton instance of V_AUTHOR diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/VBook.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/VBook.java index 6f233b1b42..a7585249cc 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/VBook.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/VBook.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VBook extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 1803632977; + private static final long serialVersionUID = -354761730; /** * The singleton instance of V_BOOK diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/VLibrary.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/VLibrary.java index 926015fa7b..1fa8f048d4 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/VLibrary.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/VLibrary.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VLibrary extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 1885194799; + private static final long serialVersionUID = -1351752734; /** * The singleton instance of V_LIBRARY diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/XTestCase_64_69.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/XTestCase_64_69.java index f714e6b928..58b18a5202 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/XTestCase_64_69.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/XTestCase_64_69.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 529120636; + private static final long serialVersionUID = 227387433; /** * The singleton instance of X_TEST_CASE_64_69 diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/XTestCase_71.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/XTestCase_71.java index c1d0705cfb..356efdea1a 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/XTestCase_71.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/XTestCase_71.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1024373118; + private static final long serialVersionUID = -166753361; /** * The singleton instance of X_TEST_CASE_71 diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/XTestCase_85.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/XTestCase_85.java index e0b0deaf5d..f6f4332bfd 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/XTestCase_85.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/XTestCase_85.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1076316616; + private static final long serialVersionUID = -360427589; /** * The singleton instance of X_TEST_CASE_85 diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/XUnused.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/XUnused.java index 47551b4ab1..1da2a87402 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/XUnused.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/XUnused.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XUnused extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1274160079; + private static final long serialVersionUID = -1129210942; /** * The singleton instance of X_UNUSED diff --git a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/records/TArraysRecord.java b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/records/TArraysRecord.java index 6e01495625..1c993a9b23 100644 --- a/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/records/TArraysRecord.java +++ b/jOOQ-test/src/org/jooq/test/h2/generatedclasses/tables/records/TArraysRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.h2.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TArraysRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -577694876; + private static final long serialVersionUID = 1840880911; /** * An uncommented item @@ -96,14 +96,4 @@ public class TArraysRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -984928643; + private static final long serialVersionUID = 2074429734; /** * The author ID @@ -37,7 +37,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByAuthorId() { return create() .selectFrom(org.jooq.test.h2.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.h2.generatedclasses.tables.TBook.AUTHOR_ID.equal(getValue(org.jooq.test.h2.generatedclasses.tables.TAuthor.ID))) @@ -49,7 +49,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByCoAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByCoAuthorId() { return create() .selectFrom(org.jooq.test.h2.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.h2.generatedclasses.tables.TBook.CO_AUTHOR_ID.equal(getValue(org.jooq.test.h2.generatedclasses.tables.TAuthor.ID))) @@ -132,14 +132,4 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -388104877; + private static final long serialVersionUID = -61321026; /** * The book ID @@ -37,7 +37,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.BOOK_ID.equal(getValue(org.jooq.test.h2.generatedclasses.tables.TBook.ID))) @@ -76,7 +76,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() throws java.sql.SQLException { + public org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() { return create() .selectFrom(org.jooq.test.h2.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.h2.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.h2.generatedclasses.tables.TBook.AUTHOR_ID))) @@ -115,7 +115,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() throws java.sql.SQLException { + public org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() { return create() .selectFrom(org.jooq.test.h2.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.h2.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.h2.generatedclasses.tables.TBook.CO_AUTHOR_ID))) @@ -222,14 +222,4 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -479534622; + private static final long serialVersionUID = -1413547842; /** * An uncommented item @@ -45,7 +45,7 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME.equal(getValue(org.jooq.test.h2.generatedclasses.tables.TBookStore.NAME))) @@ -58,14 +58,4 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1022147405; + private static final long serialVersionUID = 816005461; /** * The book store name @@ -52,7 +52,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.h2.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() throws java.sql.SQLException { + public org.jooq.test.h2.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() { return create() .selectFrom(org.jooq.test.h2.generatedclasses.tables.TBookStore.T_BOOK_STORE) .where(org.jooq.test.h2.generatedclasses.tables.TBookStore.NAME.equal(getValue(org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME))) @@ -97,7 +97,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.h2.generatedclasses.tables.records.TBookRecord fetchTBook() throws java.sql.SQLException { + public org.jooq.test.h2.generatedclasses.tables.records.TBookRecord fetchTBook() { return create() .selectFrom(org.jooq.test.h2.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.h2.generatedclasses.tables.TBook.ID.equal(getValue(org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.BOOK_ID))) @@ -124,14 +124,4 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 907596554; + private static final long serialVersionUID = 1487915335; /** * An uncommented item @@ -64,14 +64,4 @@ public class TTriggersRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1842842686; + private static final long serialVersionUID = 2057627838; /** * An uncommented item @@ -204,14 +204,4 @@ public class T_639NumbersTableRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -987239510; + private static final long serialVersionUID = -307969229; /** * An uncommented item @@ -162,14 +162,4 @@ public class T_658RefRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -863165160; + private static final long serialVersionUID = -1475939652; /** * An uncommented item @@ -50,14 +50,4 @@ public class T_725LobTestRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1504249470; + private static final long serialVersionUID = 760566948; /** * An uncommented item @@ -60,14 +60,4 @@ public class T_785Record extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1383072690; + private static final long serialVersionUID = 1801473268; /** * An uncommented item @@ -32,14 +32,4 @@ public class T_877Record extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -2144180550; + private static final long serialVersionUID = 829284855; /** * An uncommented item @@ -102,14 +102,4 @@ public class VAuthorRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 323579680; + private static final long serialVersionUID = 1633692053; /** * An uncommented item @@ -144,14 +144,4 @@ public class VBookRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1221655124; + private static final long serialVersionUID = 1743962105; /** * An uncommented item @@ -46,14 +46,4 @@ public class VLibraryRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1326587031; + private static final long serialVersionUID = -1406360693; /** * An uncommented item @@ -35,7 +35,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_71List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_71List() { return create() .selectFrom(org.jooq.test.h2.generatedclasses.tables.XTestCase_71.X_TEST_CASE_71) .where(org.jooq.test.h2.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID.equal(getValueAsShort(org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.ID))) @@ -74,7 +74,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.h2.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.h2.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.UNUSED_ID))) @@ -87,14 +87,4 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 2133311882; + private static final long serialVersionUID = 656531524; /** * An uncommented item @@ -62,7 +62,7 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() throws java.sql.SQLException { + public org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() { return create() .selectFrom(org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.ID.equal(getValueAsInteger(org.jooq.test.h2.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID))) @@ -75,14 +75,4 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 673792724; + private static final long serialVersionUID = 717295548; /** * An uncommented item @@ -84,14 +84,4 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 16867998; + private static final long serialVersionUID = -921574161; /** * An uncommented item @@ -35,7 +35,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_64_69List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_64_69List() { return create() .selectFrom(org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.UNUSED_ID.equal(getValue(org.jooq.test.h2.generatedclasses.tables.XUnused.ID))) @@ -310,14 +310,4 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fGetOneCursor(org.jooq.Configuration configuration, java.lang.Integer[] bookIds) throws java.sql.SQLException { + public static org.jooq.Result fGetOneCursor(org.jooq.Configuration configuration, java.lang.Integer[] bookIds) { org.jooq.test.hsqldb.generatedclasses.routines.FGetOneCursor f = new org.jooq.test.hsqldb.generatedclasses.routines.FGetOneCursor(); f.setBookIds(bookIds); @@ -256,8 +262,9 @@ public final class Routines { * Invoke F_NUMBER * * @param n + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer fNumber(org.jooq.Configuration configuration, java.lang.Integer n) throws java.sql.SQLException { + public static java.lang.Integer fNumber(org.jooq.Configuration configuration, java.lang.Integer n) { org.jooq.test.hsqldb.generatedclasses.routines.FNumber f = new org.jooq.test.hsqldb.generatedclasses.routines.FNumber(); f.setN(n); @@ -292,8 +299,9 @@ public final class Routines { /** * Invoke F_ONE * + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer fOne(org.jooq.Configuration configuration) throws java.sql.SQLException { + public static java.lang.Integer fOne(org.jooq.Configuration configuration) { org.jooq.test.hsqldb.generatedclasses.routines.FOne f = new org.jooq.test.hsqldb.generatedclasses.routines.FOne(); f.execute(configuration); @@ -319,8 +327,9 @@ public final class Routines { * @param o2 OUT parameter * @param io2 IN OUT parameter * @param i2 IN parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.hsqldb.generatedclasses.routines.P391 p391(org.jooq.Configuration configuration, java.lang.Integer i1, java.lang.Integer io1, java.lang.Integer io2, java.lang.Integer i2) throws java.sql.SQLException { + public static org.jooq.test.hsqldb.generatedclasses.routines.P391 p391(org.jooq.Configuration configuration, java.lang.Integer i1, java.lang.Integer io1, java.lang.Integer io2, java.lang.Integer i2) { org.jooq.test.hsqldb.generatedclasses.routines.P391 p = new org.jooq.test.hsqldb.generatedclasses.routines.P391(); p.setI1(i1); p.setIo1(io1); @@ -336,8 +345,9 @@ public final class Routines { * * @param inArray IN parameter * @param outArray OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer[] pArrays1(org.jooq.Configuration configuration, java.lang.Integer[] inArray) throws java.sql.SQLException { + public static java.lang.Integer[] pArrays1(org.jooq.Configuration configuration, java.lang.Integer[] inArray) { org.jooq.test.hsqldb.generatedclasses.routines.PArrays1 p = new org.jooq.test.hsqldb.generatedclasses.routines.PArrays1(); p.setInArray(inArray); @@ -350,8 +360,9 @@ public final class Routines { * * @param inArray IN parameter * @param outArray OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Long[] pArrays2(org.jooq.Configuration configuration, java.lang.Long[] inArray) throws java.sql.SQLException { + public static java.lang.Long[] pArrays2(org.jooq.Configuration configuration, java.lang.Long[] inArray) { org.jooq.test.hsqldb.generatedclasses.routines.PArrays2 p = new org.jooq.test.hsqldb.generatedclasses.routines.PArrays2(); p.setInArray(inArray); @@ -364,8 +375,9 @@ public final class Routines { * * @param inArray IN parameter * @param outArray OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.String[] pArrays3(org.jooq.Configuration configuration, java.lang.String[] inArray) throws java.sql.SQLException { + public static java.lang.String[] pArrays3(org.jooq.Configuration configuration, java.lang.String[] inArray) { org.jooq.test.hsqldb.generatedclasses.routines.PArrays3 p = new org.jooq.test.hsqldb.generatedclasses.routines.PArrays3(); p.setInArray(inArray); @@ -378,8 +390,9 @@ public final class Routines { * * @param authorName IN parameter * @param result OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer pAuthorExists(org.jooq.Configuration configuration, java.lang.String authorName) throws java.sql.SQLException { + public static java.lang.Integer pAuthorExists(org.jooq.Configuration configuration, java.lang.String authorName) { org.jooq.test.hsqldb.generatedclasses.routines.PAuthorExists p = new org.jooq.test.hsqldb.generatedclasses.routines.PAuthorExists(); p.setAuthorName(authorName); @@ -390,8 +403,9 @@ public final class Routines { /** * Invoke P_CREATE_AUTHOR * + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static void pCreateAuthor(org.jooq.Configuration configuration) throws java.sql.SQLException { + public static void pCreateAuthor(org.jooq.Configuration configuration) { org.jooq.test.hsqldb.generatedclasses.routines.PCreateAuthor p = new org.jooq.test.hsqldb.generatedclasses.routines.PCreateAuthor(); p.execute(configuration); @@ -402,8 +416,9 @@ public final class Routines { * * @param firstName IN parameter * @param lastName IN parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static void pCreateAuthorByName(org.jooq.Configuration configuration, java.lang.String firstName, java.lang.String lastName) throws java.sql.SQLException { + public static void pCreateAuthorByName(org.jooq.Configuration configuration, java.lang.String firstName, java.lang.String lastName) { org.jooq.test.hsqldb.generatedclasses.routines.PCreateAuthorByName p = new org.jooq.test.hsqldb.generatedclasses.routines.PCreateAuthorByName(); p.setFirstName(firstName); p.setLastName(lastName); @@ -417,8 +432,9 @@ public final class Routines { * @param in1 IN parameter * @param out1 OUT parameter * @param out2 IN OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.hsqldb.generatedclasses.routines.PUnused pUnused(org.jooq.Configuration configuration, java.lang.String in1, java.lang.Integer out2) throws java.sql.SQLException { + public static org.jooq.test.hsqldb.generatedclasses.routines.PUnused pUnused(org.jooq.Configuration configuration, java.lang.String in1, java.lang.Integer out2) { org.jooq.test.hsqldb.generatedclasses.routines.PUnused p = new org.jooq.test.hsqldb.generatedclasses.routines.PUnused(); p.setIn1(in1); p.setOut2(out2); diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/Sequences.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/Sequences.java index 0c22608e93..7df2886a0c 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/Sequences.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/Sequences.java @@ -8,7 +8,7 @@ package org.jooq.test.hsqldb.generatedclasses; * * Convenience access to all sequences in PUBLIC */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public final class Sequences { diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/TLanguage.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/TLanguage.java index a4e4e85b8a..11cf4dd98d 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/TLanguage.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/TLanguage.java @@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum TLanguage implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_11.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_11.java index 1983214dd2..00a9a7b34d 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_11.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_11.java @@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_11 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_12.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_12.java index 6f67f735e6..b8c149c81b 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_12.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_12.java @@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_12 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_21.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_21.java index be471057b5..ec03d57963 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_21.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_21.java @@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_21 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_22.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_22.java index 54af295594..61ce190c65 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_22.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_22.java @@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_22 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_31.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_31.java index 9e40c85e55..a46b38993a 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_31.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_31.java @@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_31 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_32.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_32.java index 95bc3c7e05..c040c9f01e 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_32.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/enums/T_658_32.java @@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_32 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/F317.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/F317.java index 8efab1059f..b5e14baa19 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/F317.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/F317.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class F317 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1558877381; + private static final long serialVersionUID = 239057650; /** diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FArrays1.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FArrays1.java index b520b99ebe..f58efa9a1c 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FArrays1.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FArrays1.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FArrays1 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1947616208; + private static final long serialVersionUID = -2120851741; /** diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FArrays2.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FArrays2.java index f7ef2b85a5..d7cd86f470 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FArrays2.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FArrays2.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FArrays2 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1895587324; + private static final long serialVersionUID = 517696951; /** diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FArrays3.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FArrays3.java index bf024108d2..e8627343ec 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FArrays3.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FArrays3.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FArrays3 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1506348980; + private static final long serialVersionUID = -1289633695; /** diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FAuthorExists.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FAuthorExists.java index a56e88eb05..5675f26eb3 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FAuthorExists.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FAuthorExists.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FAuthorExists extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 86822998; + private static final long serialVersionUID = 1765342985; /** diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FGetOneCursor.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FGetOneCursor.java index 820e17ce04..34537a933b 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FGetOneCursor.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FGetOneCursor.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FGetOneCursor extends org.jooq.impl.AbstractRoutine> { - private static final long serialVersionUID = -1258283554; + private static final long serialVersionUID = -1209075055; /** diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FNumber.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FNumber.java index d190f1c565..fa40b994e8 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FNumber.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FNumber.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FNumber extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -951408241; + private static final long serialVersionUID = -1063572932; /** diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FOne.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FOne.java index c1c1602d4a..95364cbee7 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FOne.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/FOne.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FOne extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1091028513; + private static final long serialVersionUID = -972838892; /** diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/P391.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/P391.java index 393f8aa348..be664cbe2c 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/P391.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/P391.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class P391 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1069515082; + private static final long serialVersionUID = 734544931; /** diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PArrays1.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PArrays1.java index 53d7e406a2..cecc2e3769 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PArrays1.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PArrays1.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PArrays1 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1390836565; + private static final long serialVersionUID = 1844857026; /** diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PArrays2.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PArrays2.java index cbf0debe07..5dd0673167 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PArrays2.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PArrays2.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PArrays2 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -583619998; + private static final long serialVersionUID = -2141212593; /** diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PArrays3.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PArrays3.java index 46d9bd7f9d..11ba76a429 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PArrays3.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PArrays3.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PArrays3 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1688064713; + private static final long serialVersionUID = 2080362596; /** diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PAuthorExists.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PAuthorExists.java index c674c87509..958aa638af 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PAuthorExists.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PAuthorExists.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PAuthorExists extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 695190004; + private static final long serialVersionUID = -1001218329; /** diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PCreateAuthor.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PCreateAuthor.java index 1cc2f38b5d..0d4e52b368 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PCreateAuthor.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PCreateAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PCreateAuthor extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1334325969; + private static final long serialVersionUID = -1844351554; /** diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PCreateAuthorByName.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PCreateAuthorByName.java index 59e0247df9..8654e648d8 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PCreateAuthorByName.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PCreateAuthorByName.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PCreateAuthorByName extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -918214311; + private static final long serialVersionUID = 872136524; /** diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PUnused.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PUnused.java index e050095269..0967debaf8 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PUnused.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/routines/PUnused.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PUnused extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1254345602; + private static final long serialVersionUID = 1667587057; /** diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/BigDecimal.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/BigDecimal.java index fd1e02ff61..5bd2810854 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/BigDecimal.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/BigDecimal.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class BigDecimal extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -1566438509; + private static final long serialVersionUID = -463608762; /** * The singleton instance of BIG_DECIMAL diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/Class.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/Class.java index 53f398076e..e523122214 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/Class.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/Class.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Class extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -1233744378; + private static final long serialVersionUID = 1397119347; /** * The singleton instance of CLASS diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/Integer.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/Integer.java index 96f533bac9..6672a59d2a 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/Integer.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/Integer.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Integer extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -1915556307; + private static final long serialVersionUID = 1944293338; /** * The singleton instance of INTEGER diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/Long.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/Long.java index f51365b41e..4f8395f8f5 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/Long.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/Long.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Long extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -1489101478; + private static final long serialVersionUID = 1391994381; /** * The singleton instance of LONG diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/Object.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/Object.java index ac6741208f..b2e0838e29 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/Object.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/Object.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Object extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -1890586842; + private static final long serialVersionUID = 1962874707; /** * The singleton instance of OBJECT diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/String.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/String.java index 24ade6b354..44f6fc4188 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/String.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/String.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class String extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 1747707647; + private static final long serialVersionUID = 950553324; /** * The singleton instance of STRING diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/System.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/System.java index 2428011407..141d7f4a53 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/System.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/System.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class System extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 1710802005; + private static final long serialVersionUID = 2103191746; /** * The singleton instance of SYSTEM diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TArrays.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TArrays.java index 8eee77cd74..e97d93cff7 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TArrays.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TArrays.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TArrays extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 810635622; + private static final long serialVersionUID = -921406957; /** * The singleton instance of T_ARRAYS diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TAuthor.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TAuthor.java index 4f767dd4cd..dd07ee4a61 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TAuthor.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthor extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1213701352; + private static final long serialVersionUID = -213576677; /** * The singleton instance of T_AUTHOR diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TBook.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TBook.java index b939ad82d1..16788809ba 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TBook.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TBook.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBook extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -2025658362; + private static final long serialVersionUID = 1551368825; /** * The singleton instance of T_BOOK diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TBookStore.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TBookStore.java index 637ad35d02..c2b5176d14 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TBookStore.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TBookStore.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1247018448; + private static final long serialVersionUID = -1589352259; /** * The singleton instance of T_BOOK_STORE diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TBookToBookStore.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TBookToBookStore.java index fc43502e8d..0ff08f9cee 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TBookToBookStore.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TBookToBookStore.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1491916680; + private static final long serialVersionUID = 1067272635; /** * The singleton instance of T_BOOK_TO_BOOK_STORE diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TTriggers.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TTriggers.java index f01a7f970c..5ee39d0f21 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TTriggers.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/TTriggers.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TTriggers extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1335035551; + private static final long serialVersionUID = 661715916; /** * The singleton instance of T_TRIGGERS diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/T_639NumbersTable.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/T_639NumbersTable.java index f2dddc429b..1c27a01e39 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/T_639NumbersTable.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/T_639NumbersTable.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 207716174; + private static final long serialVersionUID = 1057315963; /** * The singleton instance of T_639_NUMBERS_TABLE diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/T_658Ref.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/T_658Ref.java index 42eafdd52a..82c565208d 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/T_658Ref.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/T_658Ref.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_658Ref extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 178821418; + private static final long serialVersionUID = -797318307; /** * The singleton instance of T_658_REF diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/T_725LobTest.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/T_725LobTest.java index e2f2981d42..d2f0e1899f 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/T_725LobTest.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/T_725LobTest.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 195792982; + private static final long serialVersionUID = 277035401; /** * The singleton instance of T_725_LOB_TEST diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/T_785.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/T_785.java index 5fbfea92c0..7be6f597b1 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/T_785.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/T_785.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_785 extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 554885497; + private static final long serialVersionUID = 1649530022; /** * The singleton instance of T_785 diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/VAuthor.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/VAuthor.java index 79c8054c66..2cebbd2a6f 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/VAuthor.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/VAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VAuthor extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -781576034; + private static final long serialVersionUID = -341408559; /** * The singleton instance of V_AUTHOR diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/VBook.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/VBook.java index 8f3b86689a..07e01386ed 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/VBook.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/VBook.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VBook extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 2087868977; + private static final long serialVersionUID = 491021662; /** * The singleton instance of V_BOOK diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/VLibrary.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/VLibrary.java index da200e7594..94fcd4a679 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/VLibrary.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/VLibrary.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VLibrary extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 1435230627; + private static final long serialVersionUID = 235043542; /** * The singleton instance of V_LIBRARY diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/XTestCase_64_69.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/XTestCase_64_69.java index a1cc6c26ae..e47b8addf4 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/XTestCase_64_69.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/XTestCase_64_69.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1396319888; + private static final long serialVersionUID = 1635139741; /** * The singleton instance of X_TEST_CASE_64_69 diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/XTestCase_71.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/XTestCase_71.java index 35ff46a4cb..3b7e7d8cdb 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/XTestCase_71.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/XTestCase_71.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1282957822; + private static final long serialVersionUID = -1844013137; /** * The singleton instance of X_TEST_CASE_71 diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/XTestCase_85.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/XTestCase_85.java index 6758d25325..e40b5c926e 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/XTestCase_85.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/XTestCase_85.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -559352700; + private static final long serialVersionUID = -289873673; /** * The singleton instance of X_TEST_CASE_85 diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/XUnused.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/XUnused.java index b5d88b8b96..29f94eb1cc 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/XUnused.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/XUnused.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XUnused extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -415101233; + private static final long serialVersionUID = -1981683582; /** * The singleton instance of X_UNUSED diff --git a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/records/BigDecimalRecord.java b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/records/BigDecimalRecord.java index a4c8d993eb..763f8f3b59 100644 --- a/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/records/BigDecimalRecord.java +++ b/jOOQ-test/src/org/jooq/test/hsqldb/generatedclasses/tables/records/BigDecimalRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class BigDecimalRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1800191894; + private static final long serialVersionUID = 1483610001; /** * An uncommented item @@ -46,14 +46,4 @@ public class BigDecimalRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1553799308; + private static final long serialVersionUID = -835529804; /** * An uncommented item @@ -36,14 +36,4 @@ public class ClassRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1541351344; + private static final long serialVersionUID = -1580739952; /** * An uncommented item @@ -32,14 +32,4 @@ public class IntegerRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1425441488; + private static final long serialVersionUID = 1810265806; /** * An uncommented item @@ -46,14 +46,4 @@ public class LongRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1393659592; + private static final long serialVersionUID = 1302658262; /** * An uncommented item @@ -52,14 +52,4 @@ public class ObjectRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 297611396; + private static final long serialVersionUID = 453102754; /** * An uncommented item @@ -46,14 +46,4 @@ public class StringRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1676720390; + private static final long serialVersionUID = 1616131544; /** * An uncommented item @@ -32,14 +32,4 @@ public class SystemRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 425271214; + private static final long serialVersionUID = 2034008927; /** * An uncommented item @@ -78,14 +78,4 @@ public class TArraysRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 758308511; + private static final long serialVersionUID = -1512936060; /** * An uncommented item @@ -35,7 +35,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByCoAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByCoAuthorId() { return create() .selectFrom(org.jooq.test.hsqldb.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.hsqldb.generatedclasses.tables.TBook.CO_AUTHOR_ID.equal(getValue(org.jooq.test.hsqldb.generatedclasses.tables.TAuthor.ID))) @@ -47,7 +47,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByAuthorId() { return create() .selectFrom(org.jooq.test.hsqldb.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.hsqldb.generatedclasses.tables.TBook.AUTHOR_ID.equal(getValue(org.jooq.test.hsqldb.generatedclasses.tables.TAuthor.ID))) @@ -130,14 +130,4 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 2140873577; + private static final long serialVersionUID = -898160862; /** * An uncommented item @@ -35,7 +35,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.hsqldb.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.hsqldb.generatedclasses.tables.TBookToBookStore.BOOK_ID.equal(getValue(org.jooq.test.hsqldb.generatedclasses.tables.TBook.ID))) @@ -74,7 +74,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.hsqldb.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() throws java.sql.SQLException { + public org.jooq.test.hsqldb.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() { return create() .selectFrom(org.jooq.test.hsqldb.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.hsqldb.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.hsqldb.generatedclasses.tables.TBook.AUTHOR_ID))) @@ -113,7 +113,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.hsqldb.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() throws java.sql.SQLException { + public org.jooq.test.hsqldb.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() { return create() .selectFrom(org.jooq.test.hsqldb.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.hsqldb.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.hsqldb.generatedclasses.tables.TBook.CO_AUTHOR_ID))) @@ -220,14 +220,4 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 309269553; + private static final long serialVersionUID = 533743523; /** * An uncommented item @@ -43,7 +43,7 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.hsqldb.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.hsqldb.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME.equal(getValue(org.jooq.test.hsqldb.generatedclasses.tables.TBookStore.NAME))) @@ -56,14 +56,4 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1775424362; + private static final long serialVersionUID = 1628914116; /** * An uncommented item @@ -50,7 +50,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.hsqldb.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() throws java.sql.SQLException { + public org.jooq.test.hsqldb.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() { return create() .selectFrom(org.jooq.test.hsqldb.generatedclasses.tables.TBookStore.T_BOOK_STORE) .where(org.jooq.test.hsqldb.generatedclasses.tables.TBookStore.NAME.equal(getValue(org.jooq.test.hsqldb.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME))) @@ -95,7 +95,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.hsqldb.generatedclasses.tables.records.TBookRecord fetchTBook() throws java.sql.SQLException { + public org.jooq.test.hsqldb.generatedclasses.tables.records.TBookRecord fetchTBook() { return create() .selectFrom(org.jooq.test.hsqldb.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.hsqldb.generatedclasses.tables.TBook.ID.equal(getValue(org.jooq.test.hsqldb.generatedclasses.tables.TBookToBookStore.BOOK_ID))) @@ -122,14 +122,4 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1687414466; + private static final long serialVersionUID = -623263763; /** * An uncommented item @@ -64,14 +64,4 @@ public class TTriggersRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -442641208; + private static final long serialVersionUID = 250309470; /** * An uncommented item @@ -204,14 +204,4 @@ public class T_639NumbersTableRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1416787414; + private static final long serialVersionUID = -1339633779; /** * An uncommented item @@ -162,14 +162,4 @@ public class T_658RefRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 501558948; + private static final long serialVersionUID = -915899742; /** * An uncommented item @@ -50,14 +50,4 @@ public class T_725LobTestRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 297185214; + private static final long serialVersionUID = 1902243262; /** * An uncommented item @@ -60,14 +60,4 @@ public class T_785Record extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -177388358; + private static final long serialVersionUID = -1635137967; /** * An uncommented item @@ -102,14 +102,4 @@ public class VAuthorRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1044358816; + private static final long serialVersionUID = -480952145; /** * An uncommented item @@ -144,14 +144,4 @@ public class VBookRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -2051840300; + private static final long serialVersionUID = -148607149; /** * An uncommented item @@ -46,14 +46,4 @@ public class VLibraryRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1268421795; + private static final long serialVersionUID = 900917057; /** * An uncommented item @@ -35,7 +35,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_71List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_71List() { return create() .selectFrom(org.jooq.test.hsqldb.generatedclasses.tables.XTestCase_71.X_TEST_CASE_71) .where(org.jooq.test.hsqldb.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID.equal(getValueAsShort(org.jooq.test.hsqldb.generatedclasses.tables.XTestCase_64_69.ID))) @@ -74,7 +74,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.hsqldb.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.hsqldb.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.hsqldb.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.hsqldb.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.hsqldb.generatedclasses.tables.XTestCase_64_69.UNUSED_ID))) @@ -87,14 +87,4 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -363407606; + private static final long serialVersionUID = -253167622; /** * An uncommented item @@ -62,7 +62,7 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.hsqldb.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() throws java.sql.SQLException { + public org.jooq.test.hsqldb.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() { return create() .selectFrom(org.jooq.test.hsqldb.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.hsqldb.generatedclasses.tables.XTestCase_64_69.ID.equal(getValueAsInteger(org.jooq.test.hsqldb.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID))) @@ -75,14 +75,4 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 277029227; + private static final long serialVersionUID = 1472717003; /** * An uncommented item @@ -62,7 +62,7 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.hsqldb.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.hsqldb.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.hsqldb.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.hsqldb.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.hsqldb.generatedclasses.tables.XTestCase_85.X_UNUSED_ID))) @@ -100,14 +100,4 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -201592592; + private static final long serialVersionUID = -1458587789; /** * An uncommented item @@ -35,7 +35,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_85List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_85List() { return create() .selectFrom(org.jooq.test.hsqldb.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85) .where(org.jooq.test.hsqldb.generatedclasses.tables.XTestCase_85.X_UNUSED_ID.equal(getValue(org.jooq.test.hsqldb.generatedclasses.tables.XUnused.ID))) @@ -48,7 +48,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXUnusedList() throws java.sql.SQLException { + public java.util.List fetchXUnusedList() { return create() .selectFrom(org.jooq.test.hsqldb.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.hsqldb.generatedclasses.tables.XUnused.ID_REF.equal(getValue(org.jooq.test.hsqldb.generatedclasses.tables.XUnused.ID))) @@ -61,7 +61,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_64_69List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_64_69List() { return create() .selectFrom(org.jooq.test.hsqldb.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.hsqldb.generatedclasses.tables.XTestCase_64_69.UNUSED_ID.equal(getValue(org.jooq.test.hsqldb.generatedclasses.tables.XUnused.ID))) @@ -132,7 +132,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.hsqldb.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.hsqldb.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.hsqldb.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.hsqldb.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.hsqldb.generatedclasses.tables.XUnused.ID_REF))) @@ -316,14 +316,4 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl { diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_11.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_11.java index 8944abcfb8..cd95a49c8f 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_11.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_11.java @@ -6,7 +6,7 @@ package org.jooq.test.ingres.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_11 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_12.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_12.java index ef348142d4..f024a02f47 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_12.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_12.java @@ -6,7 +6,7 @@ package org.jooq.test.ingres.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_12 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_21.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_21.java index 5dfe896562..8608312f67 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_21.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_21.java @@ -6,7 +6,7 @@ package org.jooq.test.ingres.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_21 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_22.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_22.java index a35ba218ee..ae7aaecbe2 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_22.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_22.java @@ -6,7 +6,7 @@ package org.jooq.test.ingres.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_22 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_31.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_31.java index 7ec96cff50..0759e8b8bf 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_31.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_31.java @@ -6,7 +6,7 @@ package org.jooq.test.ingres.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_31 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_32.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_32.java index 30f7101aa5..a59d7176db 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_32.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/enums/T_658_32.java @@ -6,7 +6,7 @@ package org.jooq.test.ingres.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_32 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/TAuthor.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/TAuthor.java index b43b0b5af9..10883aded0 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/TAuthor.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/TAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.ingres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthor extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 446987962; + private static final long serialVersionUID = 242976621; /** * The singleton instance of t_author diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/TBook.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/TBook.java index d3c9731211..ffb082614a 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/TBook.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/TBook.java @@ -6,11 +6,11 @@ package org.jooq.test.ingres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBook extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1621611450; + private static final long serialVersionUID = -1867771603; /** * The singleton instance of t_book diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/TBookStore.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/TBookStore.java index 93827106c3..a39696d43b 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/TBookStore.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/TBookStore.java @@ -6,11 +6,11 @@ package org.jooq.test.ingres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -137128013; + private static final long serialVersionUID = -1047346074; /** * The singleton instance of t_book_store diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/TBookToBookStore.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/TBookToBookStore.java index 071209e5a9..73f341a76a 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/TBookToBookStore.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/TBookToBookStore.java @@ -6,11 +6,11 @@ package org.jooq.test.ingres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1417595022; + private static final long serialVersionUID = 2117775169; /** * The singleton instance of t_book_to_book_store diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/TTriggers.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/TTriggers.java index cc8f1c0ea4..b9b4b2bd14 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/TTriggers.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/TTriggers.java @@ -6,11 +6,11 @@ package org.jooq.test.ingres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TTriggers extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1289318852; + private static final long serialVersionUID = 592228855; /** * The singleton instance of t_triggers diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/T_639NumbersTable.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/T_639NumbersTable.java index 2eaf1c9c7b..abd2b0f485 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/T_639NumbersTable.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/T_639NumbersTable.java @@ -6,11 +6,11 @@ package org.jooq.test.ingres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -50020051; + private static final long serialVersionUID = 110828378; /** * The singleton instance of t_639_numbers_table diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/T_658Ref.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/T_658Ref.java index a25b0531cd..9770f0cf33 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/T_658Ref.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/T_658Ref.java @@ -6,11 +6,11 @@ package org.jooq.test.ingres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_658Ref extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 1523955902; + private static final long serialVersionUID = -1292354191; /** * The singleton instance of t_658_ref diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/T_725LobTest.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/T_725LobTest.java index 70add203ab..10e8a13909 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/T_725LobTest.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/T_725LobTest.java @@ -6,11 +6,11 @@ package org.jooq.test.ingres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 2128034120; + private static final long serialVersionUID = -2085690757; /** * The singleton instance of t_725_lob_test diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/T_785.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/T_785.java index 7a411b848f..278a9d6a76 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/T_785.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/T_785.java @@ -6,11 +6,11 @@ package org.jooq.test.ingres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_785 extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -88375331; + private static final long serialVersionUID = -744156790; /** * The singleton instance of t_785 diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/VAuthor.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/VAuthor.java index fae7b77752..303e9cb97a 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/VAuthor.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/VAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.ingres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VAuthor extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 736209034; + private static final long serialVersionUID = 248129085; /** * The singleton instance of v_author diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/VBook.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/VBook.java index 98f0b01194..3798a848b4 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/VBook.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/VBook.java @@ -6,11 +6,11 @@ package org.jooq.test.ingres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VBook extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 81511985; + private static final long serialVersionUID = -1976929570; /** * The singleton instance of v_book diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/VLibrary.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/VLibrary.java index df39762325..bd92b9e66f 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/VLibrary.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/VLibrary.java @@ -6,11 +6,11 @@ package org.jooq.test.ingres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VLibrary extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 1927781399; + private static final long serialVersionUID = 1512621770; /** * The singleton instance of v_library diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/XTestCase_64_69.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/XTestCase_64_69.java index ab91959eec..d46dc03613 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/XTestCase_64_69.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/XTestCase_64_69.java @@ -6,11 +6,11 @@ package org.jooq.test.ingres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1921022436; + private static final long serialVersionUID = -1337106927; /** * The singleton instance of x_test_case_64_69 diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/XTestCase_71.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/XTestCase_71.java index 3c7b20ce99..fa82f30e3e 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/XTestCase_71.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/XTestCase_71.java @@ -6,11 +6,11 @@ package org.jooq.test.ingres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 206622458; + private static final long serialVersionUID = 1605221677; /** * The singleton instance of x_test_case_71 diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/XTestCase_85.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/XTestCase_85.java index edacfda349..47ba3d4f62 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/XTestCase_85.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/XTestCase_85.java @@ -6,11 +6,11 @@ package org.jooq.test.ingres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 772050628; + private static final long serialVersionUID = -453840201; /** * The singleton instance of x_test_case_85 diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/XUnused.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/XUnused.java index 027ccd018b..2b4b468b9f 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/XUnused.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/XUnused.java @@ -6,11 +6,11 @@ package org.jooq.test.ingres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XUnused extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1075892277; + private static final long serialVersionUID = -630570648; /** * The singleton instance of x_unused diff --git a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/records/TAuthorRecord.java b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/records/TAuthorRecord.java index 9a6a4fd802..f4773d8d03 100644 --- a/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/records/TAuthorRecord.java +++ b/jOOQ-test/src/org/jooq/test/ingres/generatedclasses/tables/records/TAuthorRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.ingres.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1221366657; + private static final long serialVersionUID = 256259656; /** * An uncommented item @@ -35,7 +35,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByAuthorId() { return create() .selectFrom(org.jooq.test.ingres.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.ingres.generatedclasses.tables.TBook.AUTHOR_ID.equal(getValue(org.jooq.test.ingres.generatedclasses.tables.TAuthor.ID))) @@ -47,7 +47,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByCoAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByCoAuthorId() { return create() .selectFrom(org.jooq.test.ingres.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.ingres.generatedclasses.tables.TBook.CO_AUTHOR_ID.equal(getValue(org.jooq.test.ingres.generatedclasses.tables.TAuthor.ID))) @@ -130,14 +130,4 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 31751063; + private static final long serialVersionUID = -420856958; /** * An uncommented item @@ -35,7 +35,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.ingres.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.ingres.generatedclasses.tables.TBookToBookStore.BOOK_ID.equal(getValue(org.jooq.test.ingres.generatedclasses.tables.TBook.ID))) @@ -74,7 +74,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.ingres.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() throws java.sql.SQLException { + public org.jooq.test.ingres.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() { return create() .selectFrom(org.jooq.test.ingres.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.ingres.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.ingres.generatedclasses.tables.TBook.AUTHOR_ID))) @@ -113,7 +113,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.ingres.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() throws java.sql.SQLException { + public org.jooq.test.ingres.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() { return create() .selectFrom(org.jooq.test.ingres.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.ingres.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.ingres.generatedclasses.tables.TBook.CO_AUTHOR_ID))) @@ -220,14 +220,4 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -895802064; + private static final long serialVersionUID = 976548300; /** * An uncommented item @@ -49,7 +49,7 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.ingres.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.ingres.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME.equal(getValue(org.jooq.test.ingres.generatedclasses.tables.TBookStore.NAME))) @@ -62,14 +62,4 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -600393622; + private static final long serialVersionUID = 1194126174; /** * An uncommented item @@ -50,7 +50,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.ingres.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() throws java.sql.SQLException { + public org.jooq.test.ingres.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() { return create() .selectFrom(org.jooq.test.ingres.generatedclasses.tables.TBookStore.T_BOOK_STORE) .where(org.jooq.test.ingres.generatedclasses.tables.TBookStore.NAME.equal(getValue(org.jooq.test.ingres.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME))) @@ -95,7 +95,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.ingres.generatedclasses.tables.records.TBookRecord fetchTBook() throws java.sql.SQLException { + public org.jooq.test.ingres.generatedclasses.tables.records.TBookRecord fetchTBook() { return create() .selectFrom(org.jooq.test.ingres.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.ingres.generatedclasses.tables.TBook.ID.equal(getValue(org.jooq.test.ingres.generatedclasses.tables.TBookToBookStore.BOOK_ID))) @@ -122,14 +122,4 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -869224462; + private static final long serialVersionUID = -10450541; /** * An uncommented item @@ -64,14 +64,4 @@ public class TTriggersRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 710345874; + private static final long serialVersionUID = -314100670; /** * An uncommented item @@ -204,14 +204,4 @@ public class T_639NumbersTableRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 616331306; + private static final long serialVersionUID = 1955469031; /** * An uncommented item @@ -162,14 +162,4 @@ public class T_658RefRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1751409104; + private static final long serialVersionUID = -148778616; /** * An uncommented item @@ -50,14 +50,4 @@ public class T_725LobTestRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -219409922; + private static final long serialVersionUID = -551127080; /** * An uncommented item @@ -60,14 +60,4 @@ public class T_785Record extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -362342470; + private static final long serialVersionUID = -37484501; /** * An uncommented item @@ -102,14 +102,4 @@ public class VAuthorRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1448963360; + private static final long serialVersionUID = 135879881; /** * An uncommented item @@ -144,14 +144,4 @@ public class VBookRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 447346388; + private static final long serialVersionUID = -2133851475; /** * An uncommented item @@ -46,14 +46,4 @@ public class VLibraryRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -113308121; + private static final long serialVersionUID = 1094469971; /** * An uncommented item @@ -35,7 +35,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_71List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_71List() { return create() .selectFrom(org.jooq.test.ingres.generatedclasses.tables.XTestCase_71.X_TEST_CASE_71) .where(org.jooq.test.ingres.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID.equal(getValue(org.jooq.test.ingres.generatedclasses.tables.XTestCase_64_69.ID))) @@ -74,7 +74,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.ingres.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.ingres.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.ingres.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.ingres.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.ingres.generatedclasses.tables.XTestCase_64_69.UNUSED_ID))) @@ -87,14 +87,4 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1495406360; + private static final long serialVersionUID = -2072532756; /** * An uncommented item @@ -62,7 +62,7 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.ingres.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() throws java.sql.SQLException { + public org.jooq.test.ingres.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() { return create() .selectFrom(org.jooq.test.ingres.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.ingres.generatedclasses.tables.XTestCase_64_69.ID.equal(getValue(org.jooq.test.ingres.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID))) @@ -75,14 +75,4 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1818253019; + private static final long serialVersionUID = 2007394415; /** * An uncommented item @@ -62,7 +62,7 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.ingres.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.ingres.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.ingres.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.ingres.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.ingres.generatedclasses.tables.XTestCase_85.X_UNUSED_ID))) @@ -100,14 +100,4 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -866730088; + private static final long serialVersionUID = -2085185235; /** * An uncommented item @@ -35,7 +35,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_85List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_85List() { return create() .selectFrom(org.jooq.test.ingres.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85) .where(org.jooq.test.ingres.generatedclasses.tables.XTestCase_85.X_UNUSED_ID.equal(getValue(org.jooq.test.ingres.generatedclasses.tables.XUnused.ID))) @@ -48,7 +48,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXUnusedList() throws java.sql.SQLException { + public java.util.List fetchXUnusedList() { return create() .selectFrom(org.jooq.test.ingres.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.ingres.generatedclasses.tables.XUnused.ID_REF.equal(getValue(org.jooq.test.ingres.generatedclasses.tables.XUnused.ID))) @@ -61,7 +61,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_64_69List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_64_69List() { return create() .selectFrom(org.jooq.test.ingres.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.ingres.generatedclasses.tables.XTestCase_64_69.UNUSED_ID.equal(getValue(org.jooq.test.ingres.generatedclasses.tables.XUnused.ID))) @@ -132,7 +132,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.ingres.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.ingres.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.ingres.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.ingres.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.ingres.generatedclasses.tables.XUnused.ID_REF))) @@ -316,14 +316,4 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl Record Map // ----------------- @@ -1508,8 +1508,13 @@ public abstract class jOOQAbstractTest< } @Override - public void bind(BindContext context) throws SQLException { - context.statement().setInt(context.nextIndex(), 2); + public void bind(BindContext context) { + try { + context.statement().setInt(context.nextIndex(), 2); + } + catch (SQLException e) { + throw translate("CustomCondition.bind", getSQL(), e); + } } }; @@ -1530,9 +1535,14 @@ public abstract class jOOQAbstractTest< } @Override - public void bind(BindContext context) throws SQLException { - context.bind(IDx2); - context.statement().setInt(context.nextIndex(), 3); + public void bind(BindContext context) { + try { + context.bind(IDx2); + context.statement().setInt(context.nextIndex(), 3); + } + catch (SQLException e) { + throw translate("CustomCondition.bind", getSQL(), e); + } } }; @@ -3148,7 +3158,7 @@ public abstract class jOOQAbstractTest< .having(count().greaterOrEqual(3)) .fetchOne(0)); } - catch (SQLException e) { + catch (DataAccessException e) { // HAVING without GROUP BY is not supported by some dialects, // So this exception is OK @@ -3768,7 +3778,7 @@ public abstract class jOOQAbstractTest< try { book.refresh(); } - catch (SQLException expected) {} + catch (DataAccessException expected) {} // Fetch the original record B book1 = create().fetchOne(TBook(), TBook_TITLE().equal("1984")); @@ -3840,10 +3850,10 @@ public abstract class jOOQAbstractTest< // Can't store the copies yet, as the primary key is null try { book1.store(); - } catch (SQLException expected) {} + } catch (DataAccessException expected) {} try { book2.store(); - } catch (SQLException expected) {} + } catch (DataAccessException expected) {} book1.setValue(TBook_ID(), 11); book2.setValue(TBook_ID(), 12); @@ -3902,7 +3912,7 @@ public abstract class jOOQAbstractTest< try { store.refresh(); } - catch (SQLException expected) {} + catch (DataAccessException expected) {} store.setValue(TBookStore_NAME(), "Rösslitor"); assertEquals(1, store.store()); @@ -4004,7 +4014,7 @@ public abstract class jOOQAbstractTest< record.refreshUsing(T785_VALUE()); fail(); } - catch (SQLException expected) {} + catch (DataAccessException expected) {} // Don't allow refreshing on inexistent results @@ -4014,7 +4024,7 @@ public abstract class jOOQAbstractTest< record.refreshUsing(T785_ID()); fail(); } - catch (SQLException expected) {} + catch (DataAccessException expected) {} // Delete records again record = create().newRecord(T785()); diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/Keys.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/Keys.java index 5c5f233c19..65bc8730fe 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/Keys.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/Keys.java @@ -8,7 +8,7 @@ package org.jooq.test.mysql.generatedclasses; * * A class modelling foreign key relationships between tables of the test schema */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") @SuppressWarnings({"unchecked"}) public class Keys extends org.jooq.impl.AbstractKeys { diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/Routines.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/Routines.java index 2b317cece4..6c070b92d4 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/Routines.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/Routines.java @@ -8,7 +8,7 @@ package org.jooq.test.mysql.generatedclasses; * * Convenience access to all stored procedures and functions in test */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public final class Routines { @@ -19,8 +19,9 @@ public final class Routines { * @param p2 * @param p3 * @param p4 + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer f317(org.jooq.Configuration configuration, java.lang.Integer p1, java.lang.Integer p2, java.lang.Integer p3, java.lang.Integer p4) throws java.sql.SQLException { + public static java.lang.Integer f317(org.jooq.Configuration configuration, java.lang.Integer p1, java.lang.Integer p2, java.lang.Integer p3, java.lang.Integer p4) { org.jooq.test.mysql.generatedclasses.routines.F317 f = new org.jooq.test.mysql.generatedclasses.routines.F317(); f.setP1(p1); f.setP2(p2); @@ -71,8 +72,9 @@ public final class Routines { * Invoke F_AUTHOR_EXISTS * * @param authorName + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer fAuthorExists(org.jooq.Configuration configuration, java.lang.String authorName) throws java.sql.SQLException { + public static java.lang.Integer fAuthorExists(org.jooq.Configuration configuration, java.lang.String authorName) { org.jooq.test.mysql.generatedclasses.routines.FAuthorExists f = new org.jooq.test.mysql.generatedclasses.routines.FAuthorExists(); f.setAuthorName(authorName); @@ -108,8 +110,9 @@ public final class Routines { * Invoke F_NUMBER * * @param n + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer fNumber(org.jooq.Configuration configuration, java.lang.Integer n) throws java.sql.SQLException { + public static java.lang.Integer fNumber(org.jooq.Configuration configuration, java.lang.Integer n) { org.jooq.test.mysql.generatedclasses.routines.FNumber f = new org.jooq.test.mysql.generatedclasses.routines.FNumber(); f.setN(n); @@ -144,8 +147,9 @@ public final class Routines { /** * Invoke F_ONE * + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer fOne(org.jooq.Configuration configuration) throws java.sql.SQLException { + public static java.lang.Integer fOne(org.jooq.Configuration configuration) { org.jooq.test.mysql.generatedclasses.routines.FOne f = new org.jooq.test.mysql.generatedclasses.routines.FOne(); f.execute(configuration); @@ -171,8 +175,9 @@ public final class Routines { * @param o2 OUT parameter * @param io2 IN OUT parameter * @param i2 IN parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.mysql.generatedclasses.routines.P391 p391(org.jooq.Configuration configuration, java.lang.Integer i1, java.lang.Integer io1, java.lang.Integer io2, java.lang.Integer i2) throws java.sql.SQLException { + public static org.jooq.test.mysql.generatedclasses.routines.P391 p391(org.jooq.Configuration configuration, java.lang.Integer i1, java.lang.Integer io1, java.lang.Integer io2, java.lang.Integer i2) { org.jooq.test.mysql.generatedclasses.routines.P391 p = new org.jooq.test.mysql.generatedclasses.routines.P391(); p.setI1(i1); p.setIo1(io1); @@ -188,8 +193,9 @@ public final class Routines { * * @param authorName IN parameter * @param result OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer pAuthorExists(org.jooq.Configuration configuration, java.lang.String authorName) throws java.sql.SQLException { + public static java.lang.Integer pAuthorExists(org.jooq.Configuration configuration, java.lang.String authorName) { org.jooq.test.mysql.generatedclasses.routines.PAuthorExists p = new org.jooq.test.mysql.generatedclasses.routines.PAuthorExists(); p.setAuthorName(authorName); @@ -200,8 +206,9 @@ public final class Routines { /** * Invoke P_CREATE_AUTHOR * + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static void pCreateAuthor(org.jooq.Configuration configuration) throws java.sql.SQLException { + public static void pCreateAuthor(org.jooq.Configuration configuration) { org.jooq.test.mysql.generatedclasses.routines.PCreateAuthor p = new org.jooq.test.mysql.generatedclasses.routines.PCreateAuthor(); p.execute(configuration); @@ -212,8 +219,9 @@ public final class Routines { * * @param firstName IN parameter * @param lastName IN parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static void pCreateAuthorByName(org.jooq.Configuration configuration, java.lang.String firstName, java.lang.String lastName) throws java.sql.SQLException { + public static void pCreateAuthorByName(org.jooq.Configuration configuration, java.lang.String firstName, java.lang.String lastName) { org.jooq.test.mysql.generatedclasses.routines.PCreateAuthorByName p = new org.jooq.test.mysql.generatedclasses.routines.PCreateAuthorByName(); p.setFirstName(firstName); p.setLastName(lastName); @@ -227,8 +235,9 @@ public final class Routines { * @param in1 IN parameter * @param out1 OUT parameter * @param out2 IN OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.mysql.generatedclasses.routines.PUnused pUnused(org.jooq.Configuration configuration, java.lang.String in1, java.lang.Boolean out2) throws java.sql.SQLException { + public static org.jooq.test.mysql.generatedclasses.routines.PUnused pUnused(org.jooq.Configuration configuration, java.lang.String in1, java.lang.Boolean out2) { org.jooq.test.mysql.generatedclasses.routines.PUnused p = new org.jooq.test.mysql.generatedclasses.routines.PUnused(); p.setIn1(in1); p.setOut2(out2); diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/Test.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/Test.java index ca3c7ce77d..3ebc55a087 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/Test.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/Test.java @@ -6,11 +6,11 @@ package org.jooq.test.mysql.generatedclasses; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Test extends org.jooq.impl.SchemaImpl { - private static final long serialVersionUID = 1824318448; + private static final long serialVersionUID = 1253072355; /** * The singleton instance of test diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/TestFactory.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/TestFactory.java index 32c04cce97..88c1b77112 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/TestFactory.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/TestFactory.java @@ -6,11 +6,11 @@ package org.jooq.test.mysql.generatedclasses; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TestFactory extends org.jooq.util.mysql.MySQLFactory { - private static final long serialVersionUID = -1630623739; + private static final long serialVersionUID = -1504465294; /** * Create a factory with a connection diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/TBookStatus.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/TBookStatus.java index 3de7a2aa5f..1c9813b5ab 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/TBookStatus.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/TBookStatus.java @@ -8,7 +8,7 @@ package org.jooq.test.mysql.generatedclasses.enums; * * The book's stock status */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum TBookStatus implements org.jooq.EnumType { SOLD_OUT("SOLD OUT"), diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/TLanguage.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/TLanguage.java index 8d29c35838..5c7f13e893 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/TLanguage.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/TLanguage.java @@ -8,7 +8,7 @@ package org.jooq.test.mysql.generatedclasses.enums; * * An entity holding language master data */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum TLanguage implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_11.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_11.java index 99115836e4..816d181950 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_11.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_11.java @@ -6,7 +6,7 @@ package org.jooq.test.mysql.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_11 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_12.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_12.java index c7ad4d826f..ad0aa58bd5 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_12.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_12.java @@ -6,7 +6,7 @@ package org.jooq.test.mysql.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_12 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_21.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_21.java index 3f0ebc0b17..84b015803a 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_21.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_21.java @@ -6,7 +6,7 @@ package org.jooq.test.mysql.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_21 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_22.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_22.java index 82d132b7e5..ef75996478 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_22.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_22.java @@ -6,7 +6,7 @@ package org.jooq.test.mysql.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_22 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_31.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_31.java index e863f5b446..6e66608e12 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_31.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_31.java @@ -6,7 +6,7 @@ package org.jooq.test.mysql.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_31 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_32.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_32.java index b272cb56bf..4300e1c1c9 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_32.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/T_658_32.java @@ -6,7 +6,7 @@ package org.jooq.test.mysql.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_32 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/VBookStatus.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/VBookStatus.java index b994485101..21ec5f9bab 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/VBookStatus.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/enums/VBookStatus.java @@ -8,7 +8,7 @@ package org.jooq.test.mysql.generatedclasses.enums; * * The book's stock status */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum VBookStatus implements org.jooq.EnumType { SOLD_OUT("SOLD OUT"), diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/F317.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/F317.java index 4b6f4da7eb..aa8adfd613 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/F317.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/F317.java @@ -8,11 +8,11 @@ package org.jooq.test.mysql.generatedclasses.routines; * * integration test for #317 */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class F317 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 144993576; + private static final long serialVersionUID = -1851197163; /** diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/FAuthorExists.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/FAuthorExists.java index 00e71522a8..0df8ef5864 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/FAuthorExists.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/FAuthorExists.java @@ -8,11 +8,11 @@ package org.jooq.test.mysql.generatedclasses.routines; * * Check existence of an author */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FAuthorExists extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 928757385; + private static final long serialVersionUID = 1762764668; /** diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/FNumber.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/FNumber.java index 3b1257a0d4..bd2dfe4493 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/FNumber.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/FNumber.java @@ -8,11 +8,11 @@ package org.jooq.test.mysql.generatedclasses.routines; * * echo n */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FNumber extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -40498086; + private static final long serialVersionUID = -624176441; /** diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/FOne.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/FOne.java index ee0bd05e5d..2c23018e05 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/FOne.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/FOne.java @@ -8,11 +8,11 @@ package org.jooq.test.mysql.generatedclasses.routines; * * 1 constant value */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FOne extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -704340063; + private static final long serialVersionUID = -1237208108; /** diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/P391.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/P391.java index 2a15c76a79..e986c7684c 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/P391.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/P391.java @@ -8,11 +8,11 @@ package org.jooq.test.mysql.generatedclasses.routines; * * Integration tests for #391 */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class P391 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1338463768; + private static final long serialVersionUID = 1479995717; /** diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/PAuthorExists.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/PAuthorExists.java index a8fe03210a..3292fdc674 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/PAuthorExists.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/PAuthorExists.java @@ -8,11 +8,11 @@ package org.jooq.test.mysql.generatedclasses.routines; * * Check existence of an author */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PAuthorExists extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 810608211; + private static final long serialVersionUID = 1913468294; /** diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/PCreateAuthor.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/PCreateAuthor.java index 70d53b5460..da0aa73fea 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/PCreateAuthor.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/PCreateAuthor.java @@ -8,11 +8,11 @@ package org.jooq.test.mysql.generatedclasses.routines; * * Create a new author */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PCreateAuthor extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -492595575; + private static final long serialVersionUID = -1480931530; /** diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/PCreateAuthorByName.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/PCreateAuthorByName.java index 45a47c39b9..792389e8b6 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/PCreateAuthorByName.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/PCreateAuthorByName.java @@ -8,11 +8,11 @@ package org.jooq.test.mysql.generatedclasses.routines; * * Create a new author */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PCreateAuthorByName extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1965214455; + private static final long serialVersionUID = 267124028; /** diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/PUnused.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/PUnused.java index cc0f155e8a..fb299591f0 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/PUnused.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/routines/PUnused.java @@ -6,11 +6,11 @@ package org.jooq.test.mysql.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PUnused extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1764413570; + private static final long serialVersionUID = 1191291185; /** diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/TAuthor.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/TAuthor.java index 251f6f2ce7..9837566aa4 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/TAuthor.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/TAuthor.java @@ -8,11 +8,11 @@ package org.jooq.test.mysql.generatedclasses.tables; * * An entity holding authors of books */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthor extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 560128032; + private static final long serialVersionUID = -1241979629; /** * The singleton instance of t_author diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/TBook.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/TBook.java index bb317bd8db..add7fb7886 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/TBook.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/TBook.java @@ -8,11 +8,11 @@ package org.jooq.test.mysql.generatedclasses.tables; * * An entity holding books */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBook extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -831164224; + private static final long serialVersionUID = 1385080365; /** * The singleton instance of t_book diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/TBookStore.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/TBookStore.java index 482e05fa24..e264fb8caa 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/TBookStore.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/TBookStore.java @@ -8,11 +8,11 @@ package org.jooq.test.mysql.generatedclasses.tables; * * A book store */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1069379762; + private static final long serialVersionUID = 1554904415; /** * The singleton instance of t_book_store diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/TBookToBookStore.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/TBookToBookStore.java index 776829e4d0..b785d96752 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/TBookToBookStore.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/TBookToBookStore.java @@ -8,11 +8,11 @@ package org.jooq.test.mysql.generatedclasses.tables; * * An m:n relation between books and book stores */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 111832206; + private static final long serialVersionUID = 1975273147; /** * The singleton instance of t_book_to_book_store diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/TTriggers.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/TTriggers.java index 9ce6a8f8cf..282642b418 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/TTriggers.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/TTriggers.java @@ -6,11 +6,11 @@ package org.jooq.test.mysql.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TTriggers extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -251255374; + private static final long serialVersionUID = -6170971; /** * The singleton instance of t_triggers diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/T_639NumbersTable.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/T_639NumbersTable.java index 197269202a..d91ef5e4ac 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/T_639NumbersTable.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/T_639NumbersTable.java @@ -6,11 +6,11 @@ package org.jooq.test.mysql.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1367994851; + private static final long serialVersionUID = -1626210224; /** * The singleton instance of t_639_numbers_table diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/T_658Ref.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/T_658Ref.java index e39d7f7588..05edcf3ce8 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/T_658Ref.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/T_658Ref.java @@ -6,11 +6,11 @@ package org.jooq.test.mysql.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_658Ref extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -170677238; + private static final long serialVersionUID = 1349430967; /** * The singleton instance of t_658_ref diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/T_725LobTest.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/T_725LobTest.java index 434ba31105..e96a75c86a 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/T_725LobTest.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/T_725LobTest.java @@ -6,11 +6,11 @@ package org.jooq.test.mysql.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -799089153; + private static final long serialVersionUID = -1592862676; /** * The singleton instance of t_725_lob_test diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/T_785.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/T_785.java index faf2087712..cf48674361 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/T_785.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/T_785.java @@ -6,11 +6,11 @@ package org.jooq.test.mysql.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_785 extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 44622285; + private static final long serialVersionUID = -2028791040; /** * The singleton instance of t_785 diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/VAuthor.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/VAuthor.java index db530dc057..8f76d4d347 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/VAuthor.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/VAuthor.java @@ -8,11 +8,11 @@ package org.jooq.test.mysql.generatedclasses.tables; * * VIEW */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VAuthor extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 1634572327; + private static final long serialVersionUID = -247582892; /** * The singleton instance of v_author diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/VBook.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/VBook.java index 971418c0f4..55cb93fa80 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/VBook.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/VBook.java @@ -8,11 +8,11 @@ package org.jooq.test.mysql.generatedclasses.tables; * * VIEW */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VBook extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -185408349; + private static final long serialVersionUID = 62737238; /** * The singleton instance of v_book diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/VLibrary.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/VLibrary.java index bab37fc32c..8631808333 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/VLibrary.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/VLibrary.java @@ -8,11 +8,11 @@ package org.jooq.test.mysql.generatedclasses.tables; * * VIEW */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VLibrary extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -501944090; + private static final long serialVersionUID = 219127251; /** * The singleton instance of v_library diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/XTestCase_64_69.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/XTestCase_64_69.java index 1e12945605..7b6393321d 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/XTestCase_64_69.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/XTestCase_64_69.java @@ -8,11 +8,11 @@ package org.jooq.test.mysql.generatedclasses.tables; * * An unused table in the same schema. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1184528976; + private static final long serialVersionUID = 175689827; /** * The singleton instance of x_test_case_64_69 diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/XTestCase_71.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/XTestCase_71.java index f8f3ff7a3e..534d6ebb6e 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/XTestCase_71.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/XTestCase_71.java @@ -8,11 +8,11 @@ package org.jooq.test.mysql.generatedclasses.tables; * * An unused table in the same schema. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 572412568; + private static final long serialVersionUID = 1864454661; /** * The singleton instance of x_test_case_71 diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/XTestCase_85.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/XTestCase_85.java index 1240e6463d..c7680d8222 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/XTestCase_85.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/XTestCase_85.java @@ -8,11 +8,11 @@ package org.jooq.test.mysql.generatedclasses.tables; * * An unused table in the same schema. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 664489106; + private static final long serialVersionUID = -128342657; /** * The singleton instance of x_test_case_85 diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/XUnused.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/XUnused.java index 878d006bf1..f4df9cb520 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/XUnused.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/XUnused.java @@ -8,11 +8,11 @@ package org.jooq.test.mysql.generatedclasses.tables; * * An unused table in the same schema. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XUnused extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 233853237; + private static final long serialVersionUID = 1162340642; /** * The singleton instance of x_unused diff --git a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/records/TAuthorRecord.java b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/records/TAuthorRecord.java index 59b421741c..cdce4736b7 100644 --- a/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/records/TAuthorRecord.java +++ b/jOOQ-test/src/org/jooq/test/mysql/generatedclasses/tables/records/TAuthorRecord.java @@ -8,11 +8,11 @@ package org.jooq.test.mysql.generatedclasses.tables.records; * * An entity holding authors of books */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1552019671; + private static final long serialVersionUID = -1308597476; /** * The author ID @@ -37,7 +37,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByAuthorId() { return create() .selectFrom(org.jooq.test.mysql.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.mysql.generatedclasses.tables.TBook.AUTHOR_ID.equal(getValue(org.jooq.test.mysql.generatedclasses.tables.TAuthor.ID))) @@ -49,7 +49,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByCoAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByCoAuthorId() { return create() .selectFrom(org.jooq.test.mysql.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.mysql.generatedclasses.tables.TBook.CO_AUTHOR_ID.equal(getValue(org.jooq.test.mysql.generatedclasses.tables.TAuthor.ID))) @@ -132,14 +132,4 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1524506217; + private static final long serialVersionUID = -1216079476; /** * The book ID @@ -37,7 +37,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.mysql.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.mysql.generatedclasses.tables.TBookToBookStore.BOOK_ID.equal(getValue(org.jooq.test.mysql.generatedclasses.tables.TBook.ID))) @@ -76,7 +76,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.mysql.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() throws java.sql.SQLException { + public org.jooq.test.mysql.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() { return create() .selectFrom(org.jooq.test.mysql.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.mysql.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.mysql.generatedclasses.tables.TBook.AUTHOR_ID))) @@ -115,7 +115,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.mysql.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() throws java.sql.SQLException { + public org.jooq.test.mysql.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() { return create() .selectFrom(org.jooq.test.mysql.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.mysql.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.mysql.generatedclasses.tables.TBook.CO_AUTHOR_ID))) @@ -236,14 +236,4 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1049832732; + private static final long serialVersionUID = 870242334; /** * The books store name @@ -31,7 +31,7 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.mysql.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.mysql.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME.equal(getValue(org.jooq.test.mysql.generatedclasses.tables.TBookStore.NAME))) @@ -58,14 +58,4 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 564482127; + private static final long serialVersionUID = 1528507751; /** * The book store name @@ -52,7 +52,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.mysql.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() throws java.sql.SQLException { + public org.jooq.test.mysql.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() { return create() .selectFrom(org.jooq.test.mysql.generatedclasses.tables.TBookStore.T_BOOK_STORE) .where(org.jooq.test.mysql.generatedclasses.tables.TBookStore.NAME.equal(getValue(org.jooq.test.mysql.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME))) @@ -97,7 +97,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.mysql.generatedclasses.tables.records.TBookRecord fetchTBook() throws java.sql.SQLException { + public org.jooq.test.mysql.generatedclasses.tables.records.TBookRecord fetchTBook() { return create() .selectFrom(org.jooq.test.mysql.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.mysql.generatedclasses.tables.TBook.ID.equal(getValue(org.jooq.test.mysql.generatedclasses.tables.TBookToBookStore.BOOK_ID))) @@ -124,14 +124,4 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1385458512; + private static final long serialVersionUID = 1844494789; /** * An uncommented item @@ -64,14 +64,4 @@ public class TTriggersRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1306392736; + private static final long serialVersionUID = -857895674; /** * An uncommented item @@ -204,14 +204,4 @@ public class T_639NumbersTableRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1033489854; + private static final long serialVersionUID = 1142205003; /** * An uncommented item @@ -162,14 +162,4 @@ public class T_658RefRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1914105800; + private static final long serialVersionUID = 1163527694; /** * An uncommented item @@ -50,14 +50,4 @@ public class T_725LobTestRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1618483178; + private static final long serialVersionUID = -1330500158; /** * An uncommented item @@ -60,14 +60,4 @@ public class T_785Record extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1804046745; + private static final long serialVersionUID = 1457233286; /** * The author ID @@ -104,14 +104,4 @@ public class VAuthorRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1731280457; + private static final long serialVersionUID = 12980072; /** * The book ID @@ -160,14 +160,4 @@ public class VBookRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1982696959; + private static final long serialVersionUID = -1670653736; /** * An uncommented item @@ -48,14 +48,4 @@ public class VLibraryRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -127250611; + private static final long serialVersionUID = 786982165; /** * An uncommented item @@ -37,7 +37,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_71List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_71List() { return create() .selectFrom(org.jooq.test.mysql.generatedclasses.tables.XTestCase_71.X_TEST_CASE_71) .where(org.jooq.test.mysql.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID.equal(getValue(org.jooq.test.mysql.generatedclasses.tables.XTestCase_64_69.ID))) @@ -74,14 +74,4 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1374626646; + private static final long serialVersionUID = -479872596; /** * An uncommented item @@ -64,7 +64,7 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.mysql.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() throws java.sql.SQLException { + public org.jooq.test.mysql.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() { return create() .selectFrom(org.jooq.test.mysql.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.mysql.generatedclasses.tables.XTestCase_64_69.ID.equal(getValue(org.jooq.test.mysql.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID))) @@ -77,14 +77,4 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1781229215; + private static final long serialVersionUID = -483767865; /** * An uncommented item @@ -64,7 +64,7 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.mysql.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.mysql.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.mysql.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.mysql.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.mysql.generatedclasses.tables.XTestCase_85.X_UNUSED_ID))) @@ -102,14 +102,4 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 203329804; + private static final long serialVersionUID = -1275824907; /** * An uncommented item @@ -37,7 +37,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_85List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_85List() { return create() .selectFrom(org.jooq.test.mysql.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85) .where(org.jooq.test.mysql.generatedclasses.tables.XTestCase_85.X_UNUSED_ID.equal(getValue(org.jooq.test.mysql.generatedclasses.tables.XUnused.ID))) @@ -50,7 +50,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXUnusedList() throws java.sql.SQLException { + public java.util.List fetchXUnusedList() { return create() .selectFrom(org.jooq.test.mysql.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.mysql.generatedclasses.tables.XUnused.ID_REF.equal(getValue(org.jooq.test.mysql.generatedclasses.tables.XUnused.ID))) @@ -122,7 +122,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.mysql.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.mysql.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.mysql.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.mysql.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.mysql.generatedclasses.tables.XUnused.ID_REF))) @@ -306,14 +306,4 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fGetOneCursor(org.jooq.Configuration configuration, org.jooq.test.oracle.generatedclasses.udt.records.UNumberArrayRecord bookIds) throws java.sql.SQLException { + public static org.jooq.Result fGetOneCursor(org.jooq.Configuration configuration, org.jooq.test.oracle.generatedclasses.udt.records.UNumberArrayRecord bookIds) { org.jooq.test.oracle.generatedclasses.routines.FGetOneCursor f = new org.jooq.test.oracle.generatedclasses.routines.FGetOneCursor(); f.setBookIds(bookIds); @@ -201,8 +206,9 @@ public final class Routines { * Invoke F_NUMBER * * @param n + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.math.BigDecimal fNumber(org.jooq.Configuration configuration, java.lang.Number n) throws java.sql.SQLException { + public static java.math.BigDecimal fNumber(org.jooq.Configuration configuration, java.lang.Number n) { org.jooq.test.oracle.generatedclasses.routines.FNumber f = new org.jooq.test.oracle.generatedclasses.routines.FNumber(); f.setN(n); @@ -237,8 +243,9 @@ public final class Routines { /** * Invoke F_ONE * + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.math.BigDecimal fOne(org.jooq.Configuration configuration) throws java.sql.SQLException { + public static java.math.BigDecimal fOne(org.jooq.Configuration configuration) { org.jooq.test.oracle.generatedclasses.routines.FOne f = new org.jooq.test.oracle.generatedclasses.routines.FOne(); f.execute(configuration); @@ -262,8 +269,9 @@ public final class Routines { * @param p2 * @param p3 * @param p4 + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.math.BigDecimal f317(org.jooq.Configuration configuration, java.lang.Number p1, java.lang.Number p2, java.lang.Number p3, java.lang.Number p4) throws java.sql.SQLException { + public static java.math.BigDecimal f317(org.jooq.Configuration configuration, java.lang.Number p1, java.lang.Number p2, java.lang.Number p3, java.lang.Number p4) { org.jooq.test.oracle.generatedclasses.routines.F317 f = new org.jooq.test.oracle.generatedclasses.routines.F317(); f.setP1(p1); f.setP2(p2); @@ -313,8 +321,9 @@ public final class Routines { /** * Invoke F377 * + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static void f377(org.jooq.Configuration configuration) throws java.sql.SQLException { + public static void f377(org.jooq.Configuration configuration) { org.jooq.test.oracle.generatedclasses.routines.F377 p = new org.jooq.test.oracle.generatedclasses.routines.F377(); p.execute(configuration); @@ -327,8 +336,9 @@ public final class Routines { * @param i IN parameter * @param io IN OUT parameter * @param o OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.oracle.generatedclasses.routines.F378 f378(org.jooq.Configuration configuration, java.lang.Number i, java.lang.Number io) throws java.sql.SQLException { + public static org.jooq.test.oracle.generatedclasses.routines.F378 f378(org.jooq.Configuration configuration, java.lang.Number i, java.lang.Number io) { org.jooq.test.oracle.generatedclasses.routines.F378 p = new org.jooq.test.oracle.generatedclasses.routines.F378(); p.setI(i); p.setIo(io); @@ -342,8 +352,9 @@ public final class Routines { * * @param inArray IN parameter * @param outArray OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.oracle.generatedclasses.udt.records.UNumberArrayRecord pArrays1(org.jooq.Configuration configuration, org.jooq.test.oracle.generatedclasses.udt.records.UNumberArrayRecord inArray) throws java.sql.SQLException { + public static org.jooq.test.oracle.generatedclasses.udt.records.UNumberArrayRecord pArrays1(org.jooq.Configuration configuration, org.jooq.test.oracle.generatedclasses.udt.records.UNumberArrayRecord inArray) { org.jooq.test.oracle.generatedclasses.routines.PArrays1 p = new org.jooq.test.oracle.generatedclasses.routines.PArrays1(); p.setInArray(inArray); @@ -356,8 +367,9 @@ public final class Routines { * * @param inArray IN parameter * @param outArray OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.oracle.generatedclasses.udt.records.UNumberLongArrayRecord pArrays2(org.jooq.Configuration configuration, org.jooq.test.oracle.generatedclasses.udt.records.UNumberLongArrayRecord inArray) throws java.sql.SQLException { + public static org.jooq.test.oracle.generatedclasses.udt.records.UNumberLongArrayRecord pArrays2(org.jooq.Configuration configuration, org.jooq.test.oracle.generatedclasses.udt.records.UNumberLongArrayRecord inArray) { org.jooq.test.oracle.generatedclasses.routines.PArrays2 p = new org.jooq.test.oracle.generatedclasses.routines.PArrays2(); p.setInArray(inArray); @@ -370,8 +382,9 @@ public final class Routines { * * @param inArray IN parameter * @param outArray OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.oracle.generatedclasses.udt.records.UStringArrayRecord pArrays3(org.jooq.Configuration configuration, org.jooq.test.oracle.generatedclasses.udt.records.UStringArrayRecord inArray) throws java.sql.SQLException { + public static org.jooq.test.oracle.generatedclasses.udt.records.UStringArrayRecord pArrays3(org.jooq.Configuration configuration, org.jooq.test.oracle.generatedclasses.udt.records.UStringArrayRecord inArray) { org.jooq.test.oracle.generatedclasses.routines.PArrays3 p = new org.jooq.test.oracle.generatedclasses.routines.PArrays3(); p.setInArray(inArray); @@ -384,8 +397,9 @@ public final class Routines { * * @param authorName IN parameter * @param result OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.math.BigDecimal pAuthorExists(org.jooq.Configuration configuration, java.lang.String authorName) throws java.sql.SQLException { + public static java.math.BigDecimal pAuthorExists(org.jooq.Configuration configuration, java.lang.String authorName) { org.jooq.test.oracle.generatedclasses.routines.PAuthorExists p = new org.jooq.test.oracle.generatedclasses.routines.PAuthorExists(); p.setAuthorName(authorName); @@ -396,8 +410,9 @@ public final class Routines { /** * Invoke P_CREATE_AUTHOR * + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static void pCreateAuthor(org.jooq.Configuration configuration) throws java.sql.SQLException { + public static void pCreateAuthor(org.jooq.Configuration configuration) { org.jooq.test.oracle.generatedclasses.routines.PCreateAuthor p = new org.jooq.test.oracle.generatedclasses.routines.PCreateAuthor(); p.execute(configuration); @@ -408,8 +423,9 @@ public final class Routines { * * @param firstName IN parameter * @param lastName IN parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static void pCreateAuthorByName(org.jooq.Configuration configuration, java.lang.String firstName, java.lang.String lastName) throws java.sql.SQLException { + public static void pCreateAuthorByName(org.jooq.Configuration configuration, java.lang.String firstName, java.lang.String lastName) { org.jooq.test.oracle.generatedclasses.routines.PCreateAuthorByName p = new org.jooq.test.oracle.generatedclasses.routines.PCreateAuthorByName(); p.setFirstName(firstName); p.setLastName(lastName); @@ -422,8 +438,9 @@ public final class Routines { * * @param address IN parameter * @param no OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.String pEnhanceAddress1(org.jooq.Configuration configuration, org.jooq.test.oracle.generatedclasses.udt.records.UAddressTypeRecord address) throws java.sql.SQLException { + public static java.lang.String pEnhanceAddress1(org.jooq.Configuration configuration, org.jooq.test.oracle.generatedclasses.udt.records.UAddressTypeRecord address) { org.jooq.test.oracle.generatedclasses.routines.PEnhanceAddress1 p = new org.jooq.test.oracle.generatedclasses.routines.PEnhanceAddress1(); p.setAddress(address); @@ -435,8 +452,9 @@ public final class Routines { * Invoke P_ENHANCE_ADDRESS2 * * @param address OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.oracle.generatedclasses.udt.records.UAddressTypeRecord pEnhanceAddress2(org.jooq.Configuration configuration) throws java.sql.SQLException { + public static org.jooq.test.oracle.generatedclasses.udt.records.UAddressTypeRecord pEnhanceAddress2(org.jooq.Configuration configuration) { org.jooq.test.oracle.generatedclasses.routines.PEnhanceAddress2 p = new org.jooq.test.oracle.generatedclasses.routines.PEnhanceAddress2(); p.execute(configuration); @@ -447,8 +465,9 @@ public final class Routines { * Invoke P_ENHANCE_ADDRESS3 * * @param address IN OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.oracle.generatedclasses.udt.records.UAddressTypeRecord pEnhanceAddress3(org.jooq.Configuration configuration, org.jooq.test.oracle.generatedclasses.udt.records.UAddressTypeRecord address) throws java.sql.SQLException { + public static org.jooq.test.oracle.generatedclasses.udt.records.UAddressTypeRecord pEnhanceAddress3(org.jooq.Configuration configuration, org.jooq.test.oracle.generatedclasses.udt.records.UAddressTypeRecord address) { org.jooq.test.oracle.generatedclasses.routines.PEnhanceAddress3 p = new org.jooq.test.oracle.generatedclasses.routines.PEnhanceAddress3(); p.setAddress(address); @@ -462,8 +481,9 @@ public final class Routines { * @param total OUT parameter * @param books OUT parameter * @param bookIds IN parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.oracle.generatedclasses.routines.PGetOneCursor pGetOneCursor(org.jooq.Configuration configuration, org.jooq.test.oracle.generatedclasses.udt.records.UNumberArrayRecord bookIds) throws java.sql.SQLException { + public static org.jooq.test.oracle.generatedclasses.routines.PGetOneCursor pGetOneCursor(org.jooq.Configuration configuration, org.jooq.test.oracle.generatedclasses.udt.records.UNumberArrayRecord bookIds) { org.jooq.test.oracle.generatedclasses.routines.PGetOneCursor p = new org.jooq.test.oracle.generatedclasses.routines.PGetOneCursor(); p.setBookIds(bookIds); @@ -476,8 +496,9 @@ public final class Routines { * * @param books OUT parameter * @param authors OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.oracle.generatedclasses.routines.PGetTwoCursors pGetTwoCursors(org.jooq.Configuration configuration) throws java.sql.SQLException { + public static org.jooq.test.oracle.generatedclasses.routines.PGetTwoCursors pGetTwoCursors(org.jooq.Configuration configuration) { org.jooq.test.oracle.generatedclasses.routines.PGetTwoCursors p = new org.jooq.test.oracle.generatedclasses.routines.PGetTwoCursors(); p.execute(configuration); @@ -490,8 +511,9 @@ public final class Routines { * @param in1 IN parameter * @param out1 OUT parameter * @param out2 IN OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.oracle.generatedclasses.routines.PUnused pUnused(org.jooq.Configuration configuration, java.lang.String in1, java.lang.Number out2) throws java.sql.SQLException { + public static org.jooq.test.oracle.generatedclasses.routines.PUnused pUnused(org.jooq.Configuration configuration, java.lang.String in1, java.lang.Number out2) { org.jooq.test.oracle.generatedclasses.routines.PUnused p = new org.jooq.test.oracle.generatedclasses.routines.PUnused(); p.setIn1(in1); p.setOut2(out2); @@ -503,8 +525,9 @@ public final class Routines { /** * Invoke P377 * + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static void p377(org.jooq.Configuration configuration) throws java.sql.SQLException { + public static void p377(org.jooq.Configuration configuration) { org.jooq.test.oracle.generatedclasses.routines.P377 p = new org.jooq.test.oracle.generatedclasses.routines.P377(); p.execute(configuration); @@ -519,8 +542,9 @@ public final class Routines { * @param o2 OUT parameter * @param io2 IN OUT parameter * @param i2 IN parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.oracle.generatedclasses.routines.P391 p391(org.jooq.Configuration configuration, java.lang.Number i1, java.lang.Number io1, java.lang.Number io2, java.lang.Number i2) throws java.sql.SQLException { + public static org.jooq.test.oracle.generatedclasses.routines.P391 p391(org.jooq.Configuration configuration, java.lang.Number i1, java.lang.Number io1, java.lang.Number io2, java.lang.Number i2) { org.jooq.test.oracle.generatedclasses.routines.P391 p = new org.jooq.test.oracle.generatedclasses.routines.P391(); p.setI1(i1); p.setIo1(io1); diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/Sequences.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/Sequences.java index 50b92fb905..bcc35bc064 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/Sequences.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/Sequences.java @@ -8,7 +8,7 @@ package org.jooq.test.oracle.generatedclasses; * * Convenience access to all sequences in TEST */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public final class Sequences { diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/Test.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/Test.java index a2ae8b4313..42af2b374a 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/Test.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/Test.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Test extends org.jooq.impl.SchemaImpl { - private static final long serialVersionUID = 1485629092; + private static final long serialVersionUID = 915695249; /** * The singleton instance of TEST diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/TestFactory.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/TestFactory.java index f86b6ce704..ae6d2a0b44 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/TestFactory.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/TestFactory.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TestFactory extends org.jooq.util.oracle.OracleFactory { - private static final long serialVersionUID = -205340087; + private static final long serialVersionUID = 773841270; /** * Create a factory with a connection diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/TLanguage.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/TLanguage.java index 778f6a2dfa..75e1d85e55 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/TLanguage.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/TLanguage.java @@ -8,7 +8,7 @@ package org.jooq.test.oracle.generatedclasses.enums; * * An entity holding language master data */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum TLanguage implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_11.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_11.java index 8d087d16bd..9d152e8394 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_11.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_11.java @@ -6,7 +6,7 @@ package org.jooq.test.oracle.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_11 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_12.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_12.java index fe01ead2a9..fddd55874b 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_12.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_12.java @@ -6,7 +6,7 @@ package org.jooq.test.oracle.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_12 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_21.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_21.java index 2da4585d1d..2be27fef54 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_21.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_21.java @@ -6,7 +6,7 @@ package org.jooq.test.oracle.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_21 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_22.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_22.java index 7af8fe3802..7c41803926 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_22.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_22.java @@ -6,7 +6,7 @@ package org.jooq.test.oracle.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_22 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_31.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_31.java index 3a07e17683..c61ffb7930 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_31.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_31.java @@ -6,7 +6,7 @@ package org.jooq.test.oracle.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_31 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_32.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_32.java index 14e24e046f..f0dca66e94 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_32.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/enums/T_658_32.java @@ -6,7 +6,7 @@ package org.jooq.test.oracle.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_32 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/Library.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/Library.java index 22005998e9..412171c745 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/Library.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/Library.java @@ -8,11 +8,11 @@ package org.jooq.test.oracle.generatedclasses.packages; * * Convenience access to all stored procedures and functions in LIBRARY */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public final class Library extends org.jooq.impl.PackageImpl { - private static final long serialVersionUID = 2043937530; + private static final long serialVersionUID = -1387072681; /** * The singleton instance of LIBRARY @@ -23,8 +23,9 @@ public final class Library extends org.jooq.impl.PackageImpl { * Invoke PKG_F_AUTHOR_EXISTS * * @param authorName + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.math.BigDecimal pkgFAuthorExists1(org.jooq.Configuration configuration, java.lang.String authorName) throws java.sql.SQLException { + public static java.math.BigDecimal pkgFAuthorExists1(org.jooq.Configuration configuration, java.lang.String authorName) { org.jooq.test.oracle.generatedclasses.packages.library.PkgFAuthorExists1 f = new org.jooq.test.oracle.generatedclasses.packages.library.PkgFAuthorExists1(); f.setAuthorName(authorName); @@ -61,8 +62,9 @@ public final class Library extends org.jooq.impl.PackageImpl { * * @param authorName * @param unused + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.math.BigDecimal pkgFAuthorExists2(org.jooq.Configuration configuration, java.lang.String authorName, java.lang.Number unused) throws java.sql.SQLException { + public static java.math.BigDecimal pkgFAuthorExists2(org.jooq.Configuration configuration, java.lang.String authorName, java.lang.Number unused) { org.jooq.test.oracle.generatedclasses.packages.library.PkgFAuthorExists2 f = new org.jooq.test.oracle.generatedclasses.packages.library.PkgFAuthorExists2(); f.setAuthorName(authorName); f.setUnused(unused); @@ -102,8 +104,9 @@ public final class Library extends org.jooq.impl.PackageImpl { /** * Invoke PKG_F_UNUSED * + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.math.BigDecimal pkgFUnused(org.jooq.Configuration configuration) throws java.sql.SQLException { + public static java.math.BigDecimal pkgFUnused(org.jooq.Configuration configuration) { org.jooq.test.oracle.generatedclasses.packages.library.PkgFUnused f = new org.jooq.test.oracle.generatedclasses.packages.library.PkgFUnused(); f.execute(configuration); @@ -127,8 +130,9 @@ public final class Library extends org.jooq.impl.PackageImpl { * @param i IN parameter * @param io IN OUT parameter * @param o OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.oracle.generatedclasses.packages.library.PkgF378 pkgF378(org.jooq.Configuration configuration, java.lang.Number i, java.lang.Number io) throws java.sql.SQLException { + public static org.jooq.test.oracle.generatedclasses.packages.library.PkgF378 pkgF378(org.jooq.Configuration configuration, java.lang.Number i, java.lang.Number io) { org.jooq.test.oracle.generatedclasses.packages.library.PkgF378 p = new org.jooq.test.oracle.generatedclasses.packages.library.PkgF378(); p.setI(i); p.setIo(io); @@ -142,8 +146,9 @@ public final class Library extends org.jooq.impl.PackageImpl { * * @param authorName IN parameter * @param result OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.math.BigDecimal pkgPAuthorExists1(org.jooq.Configuration configuration, java.lang.String authorName) throws java.sql.SQLException { + public static java.math.BigDecimal pkgPAuthorExists1(org.jooq.Configuration configuration, java.lang.String authorName) { org.jooq.test.oracle.generatedclasses.packages.library.PkgPAuthorExists1 p = new org.jooq.test.oracle.generatedclasses.packages.library.PkgPAuthorExists1(); p.setAuthorName(authorName); @@ -157,8 +162,9 @@ public final class Library extends org.jooq.impl.PackageImpl { * @param authorName IN parameter * @param result OUT parameter * @param unused IN OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.oracle.generatedclasses.packages.library.PkgPAuthorExists2 pkgPAuthorExists2(org.jooq.Configuration configuration, java.lang.String authorName, java.lang.Number unused) throws java.sql.SQLException { + public static org.jooq.test.oracle.generatedclasses.packages.library.PkgPAuthorExists2 pkgPAuthorExists2(org.jooq.Configuration configuration, java.lang.String authorName, java.lang.Number unused) { org.jooq.test.oracle.generatedclasses.packages.library.PkgPAuthorExists2 p = new org.jooq.test.oracle.generatedclasses.packages.library.PkgPAuthorExists2(); p.setAuthorName(authorName); p.setUnused(unused); diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/LibraryTypes.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/LibraryTypes.java index 4380819c20..4acf4455e4 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/LibraryTypes.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/LibraryTypes.java @@ -8,11 +8,11 @@ package org.jooq.test.oracle.generatedclasses.packages; * * Convenience access to all stored procedures and functions in LIBRARY_TYPES */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public final class LibraryTypes extends org.jooq.impl.PackageImpl { - private static final long serialVersionUID = 154092253; + private static final long serialVersionUID = -1812973494; /** * The singleton instance of LIBRARY_TYPES diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/Library_767PackageTest.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/Library_767PackageTest.java index 3e5cd463d9..933a9a287d 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/Library_767PackageTest.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/Library_767PackageTest.java @@ -8,11 +8,11 @@ package org.jooq.test.oracle.generatedclasses.packages; * * Convenience access to all stored procedures and functions in LIBRARY_767_PACKAGE_TEST */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public final class Library_767PackageTest extends org.jooq.impl.PackageImpl { - private static final long serialVersionUID = -1826382678; + private static final long serialVersionUID = -1703112995; /** * The singleton instance of LIBRARY_767_PACKAGE_TEST @@ -22,8 +22,9 @@ public final class Library_767PackageTest extends org.jooq.impl.PackageImpl { /** * Invoke LIBRARY_767_PACKAGE_TEST * + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.math.BigDecimal library_767PackageTest(org.jooq.Configuration configuration) throws java.sql.SQLException { + public static java.math.BigDecimal library_767PackageTest(org.jooq.Configuration configuration) { org.jooq.test.oracle.generatedclasses.packages.library_767_package_test.Library_767PackageTest f = new org.jooq.test.oracle.generatedclasses.packages.library_767_package_test.Library_767PackageTest(); f.execute(configuration); diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgF378.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgF378.java index d73d58c63a..6f25e904e9 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgF378.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgF378.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.packages.library; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PkgF378 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1033869008; + private static final long serialVersionUID = 861852797; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgFAuthorExists1.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgFAuthorExists1.java index 09eb05397b..02012be77a 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgFAuthorExists1.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgFAuthorExists1.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.packages.library; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PkgFAuthorExists1 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1600893465; + private static final long serialVersionUID = 1050204620; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgFAuthorExists2.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgFAuthorExists2.java index 0035a58020..0cb5270852 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgFAuthorExists2.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgFAuthorExists2.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.packages.library; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PkgFAuthorExists2 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 622502256; + private static final long serialVersionUID = 1824896989; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgFManyParameters.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgFManyParameters.java index 38c8820abe..42a7dbd236 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgFManyParameters.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgFManyParameters.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.packages.library; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PkgFManyParameters extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 120480781; + private static final long serialVersionUID = 1529385082; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgFUnused.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgFUnused.java index 645a879735..1e2b21e871 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgFUnused.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgFUnused.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.packages.library; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PkgFUnused extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 360186577; + private static final long serialVersionUID = -939990076; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgPAuthorExists1.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgPAuthorExists1.java index 88697e2873..a7de77598e 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgPAuthorExists1.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgPAuthorExists1.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.packages.library; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PkgPAuthorExists1 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1754166568; + private static final long serialVersionUID = 36184267; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgPAuthorExists2.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgPAuthorExists2.java index 1f516cd820..1acc8cf4be 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgPAuthorExists2.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgPAuthorExists2.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.packages.library; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PkgPAuthorExists2 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 449826208; + private static final long serialVersionUID = 627695885; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgPManyParameters.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgPManyParameters.java index a12bcaa3d5..5f7f2fe509 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgPManyParameters.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library/PkgPManyParameters.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.packages.library; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PkgPManyParameters extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -241699176; + private static final long serialVersionUID = -1506153269; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library_767_package_test/Library_767PackageTest.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library_767_package_test/Library_767PackageTest.java index 063b610cd3..a2f329ec5f 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library_767_package_test/Library_767PackageTest.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/packages/library_767_package_test/Library_767PackageTest.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.packages.library_767_package_test; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Library_767PackageTest extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1586914924; + private static final long serialVersionUID = 1058176479; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/F317.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/F317.java index d35db5245b..547fc5e2d8 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/F317.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/F317.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class F317 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -62794456; + private static final long serialVersionUID = 1305832219; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/F377.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/F377.java index 6ea303a461..df66645675 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/F377.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/F377.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class F377 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -2088623167; + private static final long serialVersionUID = 1668408116; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/F378.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/F378.java index 0935dab610..e6cd423a52 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/F378.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/F378.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class F378 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 220395221; + private static final long serialVersionUID = -1011097406; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FArrays1.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FArrays1.java index 2bf0c99d00..643b5d7f4c 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FArrays1.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FArrays1.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FArrays1 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1172596058; + private static final long serialVersionUID = 1144831001; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FArrays2.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FArrays2.java index 8f7d3f7ce0..a3f898a72c 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FArrays2.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FArrays2.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FArrays2 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 304540396; + private static final long serialVersionUID = 1458750809; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FArrays3.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FArrays3.java index c9770babab..40b06bba87 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FArrays3.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FArrays3.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FArrays3 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -756141659; + private static final long serialVersionUID = 1561285400; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FAuthorExists.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FAuthorExists.java index 9d93ff0101..e88af312a5 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FAuthorExists.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FAuthorExists.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FAuthorExists extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -459964295; + private static final long serialVersionUID = -664172122; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FGetOneCursor.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FGetOneCursor.java index 0cd717007b..ed6bb96bfa 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FGetOneCursor.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FGetOneCursor.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FGetOneCursor extends org.jooq.impl.AbstractRoutine> { - private static final long serialVersionUID = -1820736329; + private static final long serialVersionUID = 913105252; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FManyParameters.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FManyParameters.java index dab439d11f..6452ba5f58 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FManyParameters.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FManyParameters.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FManyParameters extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 808664064; + private static final long serialVersionUID = 280265901; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FNumber.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FNumber.java index b5ed9dffe5..94a89f837b 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FNumber.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FNumber.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FNumber extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1665365748; + private static final long serialVersionUID = 1528505983; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FOne.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FOne.java index 80ca0546f4..c2b2dc24fa 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FOne.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/FOne.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FOne extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 352368750; + private static final long serialVersionUID = 99817051; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/P377.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/P377.java index 86c8c6d3b7..c73115f731 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/P377.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/P377.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class P377 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 55729079; + private static final long serialVersionUID = -482206934; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/P391.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/P391.java index ff530e19c2..1d2e3b0379 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/P391.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/P391.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class P391 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -925597682; + private static final long serialVersionUID = -772041221; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PArrays1.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PArrays1.java index a5be55c390..ffbf497cdb 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PArrays1.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PArrays1.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PArrays1 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 157422969; + private static final long serialVersionUID = -1856010650; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PArrays2.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PArrays2.java index ef4567ba07..f6ab94f990 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PArrays2.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PArrays2.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PArrays2 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1980461900; + private static final long serialVersionUID = -330342175; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PArrays3.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PArrays3.java index e5043d17ce..dd2effd564 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PArrays3.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PArrays3.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PArrays3 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1931422151; + private static final long serialVersionUID = 350111526; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PAuthorExists.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PAuthorExists.java index f1695f0487..2373b31843 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PAuthorExists.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PAuthorExists.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PAuthorExists extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -2116206774; + private static final long serialVersionUID = 1829601847; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PCreateAuthor.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PCreateAuthor.java index 304d5a8436..f484d34010 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PCreateAuthor.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PCreateAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PCreateAuthor extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -974422249; + private static final long serialVersionUID = -1577502588; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PCreateAuthorByName.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PCreateAuthorByName.java index 93ada072f1..423e327fcf 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PCreateAuthorByName.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PCreateAuthorByName.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PCreateAuthorByName extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1404240979; + private static final long serialVersionUID = -802124858; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PEnhanceAddress1.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PEnhanceAddress1.java index 49111c23e4..aaa7d39d2d 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PEnhanceAddress1.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PEnhanceAddress1.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PEnhanceAddress1 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1804979591; + private static final long serialVersionUID = -743460506; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PEnhanceAddress2.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PEnhanceAddress2.java index 2b8a83ce8a..455d23fd35 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PEnhanceAddress2.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PEnhanceAddress2.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PEnhanceAddress2 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -901382159; + private static final long serialVersionUID = -2090861858; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PEnhanceAddress3.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PEnhanceAddress3.java index 1f819de520..8b21d25fd4 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PEnhanceAddress3.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PEnhanceAddress3.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PEnhanceAddress3 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1050652503; + private static final long serialVersionUID = -74803178; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PGetOneCursor.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PGetOneCursor.java index ab7a1d5a2d..dcaf48981a 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PGetOneCursor.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PGetOneCursor.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PGetOneCursor extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1216697321; + private static final long serialVersionUID = -304088100; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PGetTwoCursors.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PGetTwoCursors.java index 3f018e128e..f7a114d79a 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PGetTwoCursors.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PGetTwoCursors.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PGetTwoCursors extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 860175832; + private static final long serialVersionUID = -1179553781; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PManyParameters.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PManyParameters.java index 631263a4c8..37eda24ddd 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PManyParameters.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PManyParameters.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PManyParameters extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1703861939; + private static final long serialVersionUID = -1361198272; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PUnused.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PUnused.java index 970bbd3c77..6f28eed3e5 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PUnused.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/routines/PUnused.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PUnused extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1179864117; + private static final long serialVersionUID = -1227467266; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TArrays.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TArrays.java index 2fafb4c142..bfad37ee93 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TArrays.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TArrays.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TArrays extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -850911043; + private static final long serialVersionUID = -1750017686; /** * The singleton instance of T_ARRAYS diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TAuthor.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TAuthor.java index ba0cddf39a..eb89297359 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TAuthor.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TAuthor.java @@ -8,11 +8,11 @@ package org.jooq.test.oracle.generatedclasses.tables; * * An entity holding authors of books */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthor extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 154733284; + private static final long serialVersionUID = 2000966615; /** * The singleton instance of T_AUTHOR diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TBook.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TBook.java index 254c98614c..9e8b189172 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TBook.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TBook.java @@ -8,11 +8,11 @@ package org.jooq.test.oracle.generatedclasses.tables; * * An entity holding books */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBook extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 2084350903; + private static final long serialVersionUID = -123895836; /** * The singleton instance of T_BOOK diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TBookStore.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TBookStore.java index 081abd5603..814adeeaf6 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TBookStore.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TBookStore.java @@ -8,11 +8,11 @@ package org.jooq.test.oracle.generatedclasses.tables; * * A book store */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1686347981; + private static final long serialVersionUID = 1653107584; /** * The singleton instance of T_BOOK_STORE diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TBookToBookStore.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TBookToBookStore.java index cddb594e22..e7302021f7 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TBookToBookStore.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TBookToBookStore.java @@ -8,11 +8,11 @@ package org.jooq.test.oracle.generatedclasses.tables; * * An m:n relation between books and book stores */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 998490608; + private static final long serialVersionUID = 1229238685; /** * The singleton instance of T_BOOK_TO_BOOK_STORE diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TDirectory.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TDirectory.java index b048eadf98..ef55397476 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TDirectory.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TDirectory.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TDirectory extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1317290804; + private static final long serialVersionUID = -1421220679; /** * The singleton instance of T_DIRECTORY diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TTriggers.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TTriggers.java index 160a567830..c4712ba58a 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TTriggers.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/TTriggers.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TTriggers extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 154986853; + private static final long serialVersionUID = 345406738; /** * The singleton instance of T_TRIGGERS diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/T_639NumbersTable.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/T_639NumbersTable.java index 6513788283..7d01b199fa 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/T_639NumbersTable.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/T_639NumbersTable.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1833074668; + private static final long serialVersionUID = -2081936807; /** * The singleton instance of T_639_NUMBERS_TABLE diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/T_658Ref.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/T_658Ref.java index e79deb9d75..8681c5b7e4 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/T_658Ref.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/T_658Ref.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_658Ref extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 1699209406; + private static final long serialVersionUID = -1117100687; /** * The singleton instance of T_658_REF diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/T_725LobTest.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/T_725LobTest.java index 5918cd7786..8712c64fe6 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/T_725LobTest.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/T_725LobTest.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1294884065; + private static final long serialVersionUID = -308001652; /** * The singleton instance of T_725_LOB_TEST diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/T_785.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/T_785.java index a82c9e9bc4..e471f8f395 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/T_785.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/T_785.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_785 extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -170215491; + private static final long serialVersionUID = -825996950; /** * The singleton instance of T_785 diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/VAuthor.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/VAuthor.java index b4ac6aa398..802ac2b5b6 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/VAuthor.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/VAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VAuthor extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -193570248; + private static final long serialVersionUID = 1514741291; /** * The singleton instance of V_AUTHOR diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/VBook.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/VBook.java index dd612f1919..7901b9ede6 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/VBook.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/VBook.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VBook extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -924452351; + private static final long serialVersionUID = -1552572242; /** * The singleton instance of V_BOOK diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/VIncomplete.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/VIncomplete.java index 365fa74658..cd686961df 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/VIncomplete.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/VIncomplete.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VIncomplete extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -147186460; + private static final long serialVersionUID = 1300719441; /** * The singleton instance of V_INCOMPLETE diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/VLibrary.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/VLibrary.java index 845be10d9f..c4ee482ad8 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/VLibrary.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/VLibrary.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VLibrary extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 443037687; + private static final long serialVersionUID = 27878058; /** * The singleton instance of V_LIBRARY diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/XTestCase_64_69.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/XTestCase_64_69.java index bcfc381993..c80d2bfa6a 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/XTestCase_64_69.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/XTestCase_64_69.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 749146660; + private static final long serialVersionUID = 1785984593; /** * The singleton instance of X_TEST_CASE_64_69 diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/XTestCase_71.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/XTestCase_71.java index b5f424cc93..87880ebc60 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/XTestCase_71.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/XTestCase_71.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 716371764; + private static final long serialVersionUID = -1990660639; /** * The singleton instance of X_TEST_CASE_71 diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/XTestCase_85.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/XTestCase_85.java index ea504eada8..46439b5e6e 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/XTestCase_85.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/XTestCase_85.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1905612124; + private static final long serialVersionUID = 1163464343; /** * The singleton instance of X_TEST_CASE_85 diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/XUnused.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/XUnused.java index cd0bc0476c..9b327a9f10 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/XUnused.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/XUnused.java @@ -8,11 +8,11 @@ package org.jooq.test.oracle.generatedclasses.tables; * * An unused table in the same schema. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XUnused extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1059476237; + private static final long serialVersionUID = -646986688; /** * The singleton instance of X_UNUSED diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/records/TArraysRecord.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/records/TArraysRecord.java index d5beb9daae..cb29a15d8d 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/records/TArraysRecord.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/tables/records/TArraysRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TArraysRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 348341444; + private static final long serialVersionUID = 896687331; /** * An uncommented item @@ -92,14 +92,4 @@ public class TArraysRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -283410443; + private static final long serialVersionUID = 1054163090; /** * The author ID @@ -37,7 +37,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByAuthorId() { return create() .selectFrom(org.jooq.test.oracle.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.oracle.generatedclasses.tables.TBook.AUTHOR_ID.equal(getValue(org.jooq.test.oracle.generatedclasses.tables.TAuthor.ID))) @@ -49,7 +49,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByCoAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByCoAuthorId() { return create() .selectFrom(org.jooq.test.oracle.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.oracle.generatedclasses.tables.TBook.CO_AUTHOR_ID.equal(getValue(org.jooq.test.oracle.generatedclasses.tables.TAuthor.ID))) @@ -132,14 +132,4 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -333660259; + private static final long serialVersionUID = 998356128; /** * The book ID @@ -37,7 +37,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.oracle.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.oracle.generatedclasses.tables.TBookToBookStore.BOOK_ID.equal(getValue(org.jooq.test.oracle.generatedclasses.tables.TBook.ID))) @@ -76,7 +76,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.oracle.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() throws java.sql.SQLException { + public org.jooq.test.oracle.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() { return create() .selectFrom(org.jooq.test.oracle.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.oracle.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.oracle.generatedclasses.tables.TBook.AUTHOR_ID))) @@ -115,7 +115,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.oracle.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() throws java.sql.SQLException { + public org.jooq.test.oracle.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() { return create() .selectFrom(org.jooq.test.oracle.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.oracle.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.oracle.generatedclasses.tables.TBook.CO_AUTHOR_ID))) @@ -222,14 +222,4 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 238583244; + private static final long serialVersionUID = 2020696240; /** * The books store name @@ -31,7 +31,7 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.oracle.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.oracle.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME.equal(getValue(org.jooq.test.oracle.generatedclasses.tables.TBookStore.NAME))) @@ -44,14 +44,4 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1828798131; + private static final long serialVersionUID = 491063693; /** * The book store name @@ -52,7 +52,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.oracle.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() throws java.sql.SQLException { + public org.jooq.test.oracle.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() { return create() .selectFrom(org.jooq.test.oracle.generatedclasses.tables.TBookStore.T_BOOK_STORE) .where(org.jooq.test.oracle.generatedclasses.tables.TBookStore.NAME.equal(getValue(org.jooq.test.oracle.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME))) @@ -97,7 +97,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.oracle.generatedclasses.tables.records.TBookRecord fetchTBook() throws java.sql.SQLException { + public org.jooq.test.oracle.generatedclasses.tables.records.TBookRecord fetchTBook() { return create() .selectFrom(org.jooq.test.oracle.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.oracle.generatedclasses.tables.TBook.ID.equal(getValue(org.jooq.test.oracle.generatedclasses.tables.TBookToBookStore.BOOK_ID))) @@ -124,14 +124,4 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -747361176; + private static final long serialVersionUID = -799597943; /** * An uncommented item @@ -35,7 +35,7 @@ public class TDirectoryRecord extends org.jooq.impl.UpdatableRecordImpl fetchTDirectoryList() throws java.sql.SQLException { + public java.util.List fetchTDirectoryList() { return create() .selectFrom(org.jooq.test.oracle.generatedclasses.tables.TDirectory.T_DIRECTORY) .where(org.jooq.test.oracle.generatedclasses.tables.TDirectory.PARENT_ID.equal(getValue(org.jooq.test.oracle.generatedclasses.tables.TDirectory.ID))) @@ -74,7 +74,7 @@ public class TDirectoryRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.oracle.generatedclasses.tables.records.TDirectoryRecord fetchTDirectory() throws java.sql.SQLException { + public org.jooq.test.oracle.generatedclasses.tables.records.TDirectoryRecord fetchTDirectory() { return create() .selectFrom(org.jooq.test.oracle.generatedclasses.tables.TDirectory.T_DIRECTORY) .where(org.jooq.test.oracle.generatedclasses.tables.TDirectory.ID.equal(getValue(org.jooq.test.oracle.generatedclasses.tables.TDirectory.PARENT_ID))) @@ -115,14 +115,4 @@ public class TDirectoryRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1565151246; + private static final long serialVersionUID = 1063127443; /** * An uncommented item @@ -64,14 +64,4 @@ public class TTriggersRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -937708218; + private static final long serialVersionUID = 1995474230; /** * An uncommented item @@ -176,14 +176,4 @@ public class T_639NumbersTableRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1334050774; + private static final long serialVersionUID = 1693847271; /** * An uncommented item @@ -162,14 +162,4 @@ public class T_658RefRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1244044848; + private static final long serialVersionUID = 1139757448; /** * An uncommented item @@ -50,14 +50,4 @@ public class T_725LobTestRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 452727294; + private static final long serialVersionUID = 412678104; /** * An uncommented item @@ -60,14 +60,4 @@ public class T_785Record extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1792461498; + private static final long serialVersionUID = -111170005; /** * An uncommented item @@ -102,14 +102,4 @@ public class VAuthorRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1077056224; + private static final long serialVersionUID = -1576280887; /** * An uncommented item @@ -144,14 +144,4 @@ public class VBookRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1749603252; + private static final long serialVersionUID = 305635667; /** * An uncommented item @@ -198,14 +198,4 @@ public class VIncompleteRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1633028396; + private static final long serialVersionUID = -1374518611; /** * An uncommented item @@ -46,14 +46,4 @@ public class VLibraryRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 675863153; + private static final long serialVersionUID = -989956649; /** * An uncommented item @@ -35,7 +35,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_71List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_71List() { return create() .selectFrom(org.jooq.test.oracle.generatedclasses.tables.XTestCase_71.X_TEST_CASE_71) .where(org.jooq.test.oracle.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID.equal(getValueAsShort(org.jooq.test.oracle.generatedclasses.tables.XTestCase_64_69.ID))) @@ -74,7 +74,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.oracle.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.oracle.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.oracle.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.oracle.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.oracle.generatedclasses.tables.XTestCase_64_69.UNUSED_ID))) @@ -87,14 +87,4 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -2102705060; + private static final long serialVersionUID = -1823683810; /** * An uncommented item @@ -62,7 +62,7 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.oracle.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() throws java.sql.SQLException { + public org.jooq.test.oracle.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() { return create() .selectFrom(org.jooq.test.oracle.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.oracle.generatedclasses.tables.XTestCase_64_69.ID.equal(getValueAsInteger(org.jooq.test.oracle.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID))) @@ -75,14 +75,4 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1056445115; + private static final long serialVersionUID = 1764387023; /** * An uncommented item @@ -62,7 +62,7 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.oracle.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.oracle.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.oracle.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.oracle.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.oracle.generatedclasses.tables.XTestCase_85.X_UNUSED_ID))) @@ -100,14 +100,4 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 897871628; + private static final long serialVersionUID = 2144550649; /** * An uncommented item @@ -37,7 +37,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_85List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_85List() { return create() .selectFrom(org.jooq.test.oracle.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85) .where(org.jooq.test.oracle.generatedclasses.tables.XTestCase_85.X_UNUSED_ID.equal(getValue(org.jooq.test.oracle.generatedclasses.tables.XUnused.ID))) @@ -50,7 +50,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXUnusedList() throws java.sql.SQLException { + public java.util.List fetchXUnusedList() { return create() .selectFrom(org.jooq.test.oracle.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.oracle.generatedclasses.tables.XUnused.ID_REF.equal(getValue(org.jooq.test.oracle.generatedclasses.tables.XUnused.ID))) @@ -63,7 +63,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_64_69List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_64_69List() { return create() .selectFrom(org.jooq.test.oracle.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.oracle.generatedclasses.tables.XTestCase_64_69.UNUSED_ID.equal(getValue(org.jooq.test.oracle.generatedclasses.tables.XUnused.ID))) @@ -134,7 +134,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.oracle.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.oracle.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.oracle.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.oracle.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.oracle.generatedclasses.tables.XUnused.ID_REF))) @@ -318,14 +318,4 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1450068600; + private static final long serialVersionUID = -1797149195; /** * The singleton instance of O_INVALID_TYPE diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/TInvalidType.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/TInvalidType.java index d4c3403a72..d769053f06 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/TInvalidType.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/TInvalidType.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.udt; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TInvalidType extends org.jooq.impl.UDTImpl { - private static final long serialVersionUID = 1543981103; + private static final long serialVersionUID = 1196900508; /** * The singleton instance of T_INVALID_TYPE diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/UAddressType.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/UAddressType.java index 4141f91314..f5c11149fc 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/UAddressType.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/UAddressType.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.udt; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class UAddressType extends org.jooq.impl.UDTImpl { - private static final long serialVersionUID = -467964649; + private static final long serialVersionUID = 983448138; /** * The singleton instance of U_ADDRESS_TYPE diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/UInvalidType.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/UInvalidType.java index b06f2c9946..9d4df8dc8d 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/UInvalidType.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/UInvalidType.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.udt; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class UInvalidType extends org.jooq.impl.UDTImpl { - private static final long serialVersionUID = -434189334; + private static final long serialVersionUID = -781269929; /** * The singleton instance of U_INVALID_TYPE diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/UStreetType.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/UStreetType.java index a4eff72b44..ebd8636009 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/UStreetType.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/UStreetType.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.udt; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class UStreetType extends org.jooq.impl.UDTImpl { - private static final long serialVersionUID = -122864527; + private static final long serialVersionUID = 433340382; /** * The singleton instance of U_STREET_TYPE diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/OInvalidTypeRecord.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/OInvalidTypeRecord.java index 66a4091a9b..12b92152ee 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/OInvalidTypeRecord.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/OInvalidTypeRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.udt.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class OInvalidTypeRecord extends org.jooq.impl.UDTRecordImpl { - private static final long serialVersionUID = 1840165893; + private static final long serialVersionUID = -1361221390; public OInvalidTypeRecord() { diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/TInvalidTypeRecord.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/TInvalidTypeRecord.java index 7451424331..f88451c2d8 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/TInvalidTypeRecord.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/TInvalidTypeRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.udt.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TInvalidTypeRecord extends org.jooq.impl.UDTRecordImpl { - private static final long serialVersionUID = -1758314400; + private static final long serialVersionUID = -664734387; public TInvalidTypeRecord() { diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UAddressTypeRecord.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UAddressTypeRecord.java index 456982ba70..4897b7898d 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UAddressTypeRecord.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UAddressTypeRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.udt.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class UAddressTypeRecord extends org.jooq.impl.UDTRecordImpl { - private static final long serialVersionUID = -1928570884; + private static final long serialVersionUID = -454958807; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UDateArrayRecord.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UDateArrayRecord.java index dd1001f5b4..17d7d6ae0e 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UDateArrayRecord.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UDateArrayRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.udt.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class UDateArrayRecord extends org.jooq.impl.ArrayRecordImpl { - private static final long serialVersionUID = -2108580840; + private static final long serialVersionUID = 1961521797; public UDateArrayRecord(org.jooq.Configuration configuration) { super("TEST.U_DATE_ARRAY", org.jooq.impl.SQLDataType.DATE, configuration); diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UInvalidTypeRecord.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UInvalidTypeRecord.java index 93c08145fe..33bdbd59fa 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UInvalidTypeRecord.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UInvalidTypeRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.udt.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class UInvalidTypeRecord extends org.jooq.impl.UDTRecordImpl { - private static final long serialVersionUID = 98969919; + private static final long serialVersionUID = 1192549932; public UInvalidTypeRecord() { diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UNumberArrayRecord.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UNumberArrayRecord.java index 4b1e3330a2..1487a9f6b2 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UNumberArrayRecord.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UNumberArrayRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.udt.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class UNumberArrayRecord extends org.jooq.impl.ArrayRecordImpl { - private static final long serialVersionUID = 72956325; + private static final long serialVersionUID = 566593496; public UNumberArrayRecord(org.jooq.Configuration configuration) { super("TEST.U_NUMBER_ARRAY", org.jooq.impl.SQLDataType.INTEGER, configuration); diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UNumberLongArrayRecord.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UNumberLongArrayRecord.java index 9e92f478b7..8d7d1ebaf7 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UNumberLongArrayRecord.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UNumberLongArrayRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.udt.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class UNumberLongArrayRecord extends org.jooq.impl.ArrayRecordImpl { - private static final long serialVersionUID = -547189597; + private static final long serialVersionUID = 255684752; public UNumberLongArrayRecord(org.jooq.Configuration configuration) { super("TEST.U_NUMBER_LONG_ARRAY", org.jooq.impl.SQLDataType.BIGINT, configuration); diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UStreetTypeRecord.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UStreetTypeRecord.java index ba79ad3b59..67a449925d 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UStreetTypeRecord.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UStreetTypeRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.udt.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class UStreetTypeRecord extends org.jooq.impl.UDTRecordImpl { - private static final long serialVersionUID = 1009248913; + private static final long serialVersionUID = 1042494916; /** diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UStringArrayRecord.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UStringArrayRecord.java index d54f635f0d..3da0fec6d6 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UStringArrayRecord.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/udt/records/UStringArrayRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.oracle.generatedclasses.udt.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class UStringArrayRecord extends org.jooq.impl.ArrayRecordImpl { - private static final long serialVersionUID = -356922749; + private static final long serialVersionUID = 1754030384; public UStringArrayRecord(org.jooq.Configuration configuration) { super("TEST.U_STRING_ARRAY", org.jooq.impl.SQLDataType.VARCHAR, configuration); diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/Keys.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/Keys.java index e585faf6ab..279211b842 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/Keys.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/Keys.java @@ -8,7 +8,7 @@ package org.jooq.test.postgres.generatedclasses; * * A class modelling foreign key relationships between tables of the public schema */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") @SuppressWarnings({"unchecked"}) public class Keys extends org.jooq.impl.AbstractKeys { diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/Public.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/Public.java index 4b304e8710..487390e255 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/Public.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/Public.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class Public extends org.jooq.impl.SchemaImpl { - private static final long serialVersionUID = -810150023; + private static final long serialVersionUID = -605386900; /** * The singleton instance of public diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/PublicFactory.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/PublicFactory.java index f400945760..3ee272215e 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/PublicFactory.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/PublicFactory.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PublicFactory extends org.jooq.util.postgres.PostgresFactory { - private static final long serialVersionUID = 21920397; + private static final long serialVersionUID = -1992014470; /** * Create a factory with a connection diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/Routines.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/Routines.java index 341976bc45..885c7ad4b8 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/Routines.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/Routines.java @@ -8,7 +8,7 @@ package org.jooq.test.postgres.generatedclasses; * * Convenience access to all stored procedures and functions in public */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public final class Routines { @@ -16,8 +16,9 @@ public final class Routines { * Invoke F_ARRAYS * * @param inArray + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer[] fArrays1(org.jooq.Configuration configuration, java.lang.Integer[] inArray) throws java.sql.SQLException { + public static java.lang.Integer[] fArrays1(org.jooq.Configuration configuration, java.lang.Integer[] inArray) { org.jooq.test.postgres.generatedclasses.routines.FArrays1 f = new org.jooq.test.postgres.generatedclasses.routines.FArrays1(); f.setInArray(inArray); @@ -53,8 +54,9 @@ public final class Routines { * Invoke F_ARRAYS * * @param inArray + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Long[] fArrays2(org.jooq.Configuration configuration, java.lang.Long[] inArray) throws java.sql.SQLException { + public static java.lang.Long[] fArrays2(org.jooq.Configuration configuration, java.lang.Long[] inArray) { org.jooq.test.postgres.generatedclasses.routines.FArrays2 f = new org.jooq.test.postgres.generatedclasses.routines.FArrays2(); f.setInArray(inArray); @@ -90,8 +92,9 @@ public final class Routines { * Invoke F_ARRAYS * * @param inArray + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.String[] fArrays3(org.jooq.Configuration configuration, java.lang.String[] inArray) throws java.sql.SQLException { + public static java.lang.String[] fArrays3(org.jooq.Configuration configuration, java.lang.String[] inArray) { org.jooq.test.postgres.generatedclasses.routines.FArrays3 f = new org.jooq.test.postgres.generatedclasses.routines.FArrays3(); f.setInArray(inArray); @@ -127,8 +130,9 @@ public final class Routines { * Invoke F_AUTHOR_EXISTS * * @param authorName + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer fAuthorExists(org.jooq.Configuration configuration, java.lang.String authorName) throws java.sql.SQLException { + public static java.lang.Integer fAuthorExists(org.jooq.Configuration configuration, java.lang.String authorName) { org.jooq.test.postgres.generatedclasses.routines.FAuthorExists f = new org.jooq.test.postgres.generatedclasses.routines.FAuthorExists(); f.setAuthorName(authorName); @@ -164,8 +168,9 @@ public final class Routines { * Invoke F_GET_ONE_CURSOR * * @param bookIds + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.Result fGetOneCursor(org.jooq.Configuration configuration, java.lang.Integer[] bookIds) throws java.sql.SQLException { + public static org.jooq.Result fGetOneCursor(org.jooq.Configuration configuration, java.lang.Integer[] bookIds) { org.jooq.test.postgres.generatedclasses.routines.FGetOneCursor f = new org.jooq.test.postgres.generatedclasses.routines.FGetOneCursor(); f.setBookIds(bookIds); @@ -201,8 +206,9 @@ public final class Routines { * Invoke F_NUMBER * * @param n + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer fNumber(org.jooq.Configuration configuration, java.lang.Integer n) throws java.sql.SQLException { + public static java.lang.Integer fNumber(org.jooq.Configuration configuration, java.lang.Integer n) { org.jooq.test.postgres.generatedclasses.routines.FNumber f = new org.jooq.test.postgres.generatedclasses.routines.FNumber(); f.setN(n); @@ -237,8 +243,9 @@ public final class Routines { /** * Invoke F_ONE * + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer fOne(org.jooq.Configuration configuration) throws java.sql.SQLException { + public static java.lang.Integer fOne(org.jooq.Configuration configuration) { org.jooq.test.postgres.generatedclasses.routines.FOne f = new org.jooq.test.postgres.generatedclasses.routines.FOne(); f.execute(configuration); @@ -262,8 +269,9 @@ public final class Routines { * @param p2 * @param p3 * @param p4 + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer f317(org.jooq.Configuration configuration, java.lang.Integer p1, java.lang.Integer p2, java.lang.Integer p3, java.lang.Integer p4) throws java.sql.SQLException { + public static java.lang.Integer f317(org.jooq.Configuration configuration, java.lang.Integer p1, java.lang.Integer p2, java.lang.Integer p3, java.lang.Integer p4) { org.jooq.test.postgres.generatedclasses.routines.F317 f = new org.jooq.test.postgres.generatedclasses.routines.F317(); f.setP1(p1); f.setP2(p2); @@ -315,8 +323,9 @@ public final class Routines { * * @param inArray IN parameter * @param outArray OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Long[] pArrays2(org.jooq.Configuration configuration, java.lang.Long[] inArray) throws java.sql.SQLException { + public static java.lang.Long[] pArrays2(org.jooq.Configuration configuration, java.lang.Long[] inArray) { org.jooq.test.postgres.generatedclasses.routines.PArrays2 p = new org.jooq.test.postgres.generatedclasses.routines.PArrays2(); p.setInArray(inArray); @@ -329,8 +338,9 @@ public final class Routines { * * @param inArray IN parameter * @param outArray OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer[] pArrays1(org.jooq.Configuration configuration, java.lang.Integer[] inArray) throws java.sql.SQLException { + public static java.lang.Integer[] pArrays1(org.jooq.Configuration configuration, java.lang.Integer[] inArray) { org.jooq.test.postgres.generatedclasses.routines.PArrays1 p = new org.jooq.test.postgres.generatedclasses.routines.PArrays1(); p.setInArray(inArray); @@ -343,8 +353,9 @@ public final class Routines { * * @param inArray IN parameter * @param outArray OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.String[] pArrays3(org.jooq.Configuration configuration, java.lang.String[] inArray) throws java.sql.SQLException { + public static java.lang.String[] pArrays3(org.jooq.Configuration configuration, java.lang.String[] inArray) { org.jooq.test.postgres.generatedclasses.routines.PArrays3 p = new org.jooq.test.postgres.generatedclasses.routines.PArrays3(); p.setInArray(inArray); @@ -357,8 +368,9 @@ public final class Routines { * * @param authorName IN parameter * @param result OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Integer pAuthorExists(org.jooq.Configuration configuration, java.lang.String authorName) throws java.sql.SQLException { + public static java.lang.Integer pAuthorExists(org.jooq.Configuration configuration, java.lang.String authorName) { org.jooq.test.postgres.generatedclasses.routines.PAuthorExists p = new org.jooq.test.postgres.generatedclasses.routines.PAuthorExists(); p.setAuthorName(authorName); @@ -369,8 +381,9 @@ public final class Routines { /** * Invoke P_CREATE_AUTHOR * + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static void pCreateAuthor(org.jooq.Configuration configuration) throws java.sql.SQLException { + public static void pCreateAuthor(org.jooq.Configuration configuration) { org.jooq.test.postgres.generatedclasses.routines.PCreateAuthor p = new org.jooq.test.postgres.generatedclasses.routines.PCreateAuthor(); p.execute(configuration); @@ -381,8 +394,9 @@ public final class Routines { * * @param firstName IN parameter * @param lastName IN parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static void pCreateAuthorByName(org.jooq.Configuration configuration, java.lang.String firstName, java.lang.String lastName) throws java.sql.SQLException { + public static void pCreateAuthorByName(org.jooq.Configuration configuration, java.lang.String firstName, java.lang.String lastName) { org.jooq.test.postgres.generatedclasses.routines.PCreateAuthorByName p = new org.jooq.test.postgres.generatedclasses.routines.PCreateAuthorByName(); p.setFirstName(firstName); p.setLastName(lastName); @@ -395,8 +409,9 @@ public final class Routines { * * @param address IN parameter * @param no OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.String pEnhanceAddress1(org.jooq.Configuration configuration, org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord address) throws java.sql.SQLException { + public static java.lang.String pEnhanceAddress1(org.jooq.Configuration configuration, org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord address) { org.jooq.test.postgres.generatedclasses.routines.PEnhanceAddress1 p = new org.jooq.test.postgres.generatedclasses.routines.PEnhanceAddress1(); p.setAddress(address); @@ -408,8 +423,9 @@ public final class Routines { * Invoke P_ENHANCE_ADDRESS2 * * @param address OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord pEnhanceAddress2(org.jooq.Configuration configuration) throws java.sql.SQLException { + public static org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord pEnhanceAddress2(org.jooq.Configuration configuration) { org.jooq.test.postgres.generatedclasses.routines.PEnhanceAddress2 p = new org.jooq.test.postgres.generatedclasses.routines.PEnhanceAddress2(); p.execute(configuration); @@ -420,8 +436,9 @@ public final class Routines { * Invoke P_ENHANCE_ADDRESS3 * * @param address IN OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord pEnhanceAddress3(org.jooq.Configuration configuration, org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord address) throws java.sql.SQLException { + public static org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord pEnhanceAddress3(org.jooq.Configuration configuration, org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord address) { org.jooq.test.postgres.generatedclasses.routines.PEnhanceAddress3 p = new org.jooq.test.postgres.generatedclasses.routines.PEnhanceAddress3(); p.setAddress(address); @@ -435,8 +452,9 @@ public final class Routines { * @param total OUT parameter * @param books OUT parameter * @param bookIds IN parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.postgres.generatedclasses.routines.PGetOneCursor pGetOneCursor(org.jooq.Configuration configuration, java.lang.Integer[] bookIds) throws java.sql.SQLException { + public static org.jooq.test.postgres.generatedclasses.routines.PGetOneCursor pGetOneCursor(org.jooq.Configuration configuration, java.lang.Integer[] bookIds) { org.jooq.test.postgres.generatedclasses.routines.PGetOneCursor p = new org.jooq.test.postgres.generatedclasses.routines.PGetOneCursor(); p.setBookIds(bookIds); @@ -449,8 +467,9 @@ public final class Routines { * * @param books OUT parameter * @param authors OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.postgres.generatedclasses.routines.PGetTwoCursors pGetTwoCursors(org.jooq.Configuration configuration) throws java.sql.SQLException { + public static org.jooq.test.postgres.generatedclasses.routines.PGetTwoCursors pGetTwoCursors(org.jooq.Configuration configuration) { org.jooq.test.postgres.generatedclasses.routines.PGetTwoCursors p = new org.jooq.test.postgres.generatedclasses.routines.PGetTwoCursors(); p.execute(configuration); @@ -460,8 +479,9 @@ public final class Routines { /** * Invoke P_TRIGGERS * + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static java.lang.Object pTriggers(org.jooq.Configuration configuration) throws java.sql.SQLException { + public static java.lang.Object pTriggers(org.jooq.Configuration configuration) { org.jooq.test.postgres.generatedclasses.routines.PTriggers f = new org.jooq.test.postgres.generatedclasses.routines.PTriggers(); f.execute(configuration); @@ -484,8 +504,9 @@ public final class Routines { * @param in1 IN parameter * @param out1 OUT parameter * @param out2 IN OUT parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.postgres.generatedclasses.routines.PUnused pUnused(org.jooq.Configuration configuration, java.lang.String in1, java.lang.Integer out2) throws java.sql.SQLException { + public static org.jooq.test.postgres.generatedclasses.routines.PUnused pUnused(org.jooq.Configuration configuration, java.lang.String in1, java.lang.Integer out2) { org.jooq.test.postgres.generatedclasses.routines.PUnused p = new org.jooq.test.postgres.generatedclasses.routines.PUnused(); p.setIn1(in1); p.setOut2(out2); @@ -503,8 +524,9 @@ public final class Routines { * @param o2 OUT parameter * @param io2 IN OUT parameter * @param i2 IN parameter + * @throws org.jooq.exception.DataAccessException if something went wrong executing the query */ - public static org.jooq.test.postgres.generatedclasses.routines.P391 p391(org.jooq.Configuration configuration, java.lang.Integer i1, java.lang.Integer io1, java.lang.Integer io2, java.lang.Integer i2) throws java.sql.SQLException { + public static org.jooq.test.postgres.generatedclasses.routines.P391 p391(org.jooq.Configuration configuration, java.lang.Integer i1, java.lang.Integer io1, java.lang.Integer io2, java.lang.Integer i2) { org.jooq.test.postgres.generatedclasses.routines.P391 p = new org.jooq.test.postgres.generatedclasses.routines.P391(); p.setI1(i1); p.setIo1(io1); diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/Sequences.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/Sequences.java index a56f6b4e1b..2c6edb1c54 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/Sequences.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/Sequences.java @@ -8,7 +8,7 @@ package org.jooq.test.postgres.generatedclasses; * * Convenience access to all sequences in public */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public final class Sequences { diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/TLanguage.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/TLanguage.java index 89a0d5d473..3133fdb52d 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/TLanguage.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/TLanguage.java @@ -6,7 +6,7 @@ package org.jooq.test.postgres.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum TLanguage implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_11.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_11.java index f184d7f33d..4a9d1309a1 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_11.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_11.java @@ -6,7 +6,7 @@ package org.jooq.test.postgres.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_11 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_12.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_12.java index c80e78df7b..a403b3c875 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_12.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_12.java @@ -6,7 +6,7 @@ package org.jooq.test.postgres.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_12 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_21.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_21.java index b50f85a892..0a41ef060e 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_21.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_21.java @@ -6,7 +6,7 @@ package org.jooq.test.postgres.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_21 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_22.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_22.java index 42d74e5f80..55372a8cce 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_22.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_22.java @@ -6,7 +6,7 @@ package org.jooq.test.postgres.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_22 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_31.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_31.java index 452d79484a..8d70642409 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_31.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_31.java @@ -6,7 +6,7 @@ package org.jooq.test.postgres.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_31 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_32.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_32.java index ec44aa2b2b..1e25f2629c 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_32.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/T_658_32.java @@ -6,7 +6,7 @@ package org.jooq.test.postgres.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_32 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/UBookStatus.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/UBookStatus.java index d2e7b821f9..2a69997de7 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/UBookStatus.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/UBookStatus.java @@ -6,7 +6,7 @@ package org.jooq.test.postgres.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum UBookStatus implements org.jooq.EnumType { ORDERED("ORDERED"), diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/UCountry.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/UCountry.java index 231c656b54..595f7eba6d 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/UCountry.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/enums/UCountry.java @@ -6,7 +6,7 @@ package org.jooq.test.postgres.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum UCountry implements org.jooq.EnumType { Germany("Germany"), diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/F317.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/F317.java index a0be219e72..9fe19b673e 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/F317.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/F317.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class F317 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 449943110; + private static final long serialVersionUID = 865983987; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FArrays1.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FArrays1.java index 912e10d1f0..b53e2e3d05 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FArrays1.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FArrays1.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FArrays1 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 411569403; + private static final long serialVersionUID = 1870456302; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FArrays2.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FArrays2.java index eb377f8538..e0907d2a15 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FArrays2.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FArrays2.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FArrays2 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1672198572; + private static final long serialVersionUID = -647821241; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FArrays3.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FArrays3.java index dd0e04c7c6..343d4b594f 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FArrays3.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FArrays3.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FArrays3 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -115429562; + private static final long serialVersionUID = -1663971783; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FAuthorExists.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FAuthorExists.java index acaaa92f97..60c14e2ef2 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FAuthorExists.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FAuthorExists.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FAuthorExists extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 393440683; + private static final long serialVersionUID = 663947998; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FGetOneCursor.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FGetOneCursor.java index 08e849e115..fe634278a9 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FGetOneCursor.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FGetOneCursor.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FGetOneCursor extends org.jooq.impl.AbstractRoutine> { - private static final long serialVersionUID = 648431497; + private static final long serialVersionUID = 681677500; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FNumber.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FNumber.java index 7c4ab4f279..980dbe7ca3 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FNumber.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FNumber.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FNumber extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -519551504; + private static final long serialVersionUID = -945903587; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FOne.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FOne.java index 9fc5f17eb6..6d6f5986f6 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FOne.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/FOne.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FOne extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1889916266; + private static final long serialVersionUID = -1898063095; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/P391.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/P391.java index 69517d3e45..cf8d8f0177 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/P391.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/P391.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class P391 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1181098635; + private static final long serialVersionUID = 1954769272; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PArrays1.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PArrays1.java index 4653f2d418..0682c2dafa 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PArrays1.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PArrays1.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PArrays1 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 914618; + private static final long serialVersionUID = -1471437849; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PArrays2.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PArrays2.java index 9d0c78e795..30676ac645 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PArrays2.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PArrays2.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PArrays2 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 913949894; + private static final long serialVersionUID = 1841499251; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PArrays3.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PArrays3.java index 79be61a5e2..dd37cac6f4 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PArrays3.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PArrays3.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PArrays3 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1090061322; + private static final long serialVersionUID = -900184413; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PAuthorExists.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PAuthorExists.java index cd7434e52a..5e019232d4 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PAuthorExists.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PAuthorExists.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PAuthorExists extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 2045016585; + private static final long serialVersionUID = -44456580; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PCreateAuthor.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PCreateAuthor.java index 657f8f26af..9be2103e9f 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PCreateAuthor.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PCreateAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PCreateAuthor extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1692067804; + private static final long serialVersionUID = 2034426953; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PCreateAuthorByName.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PCreateAuthorByName.java index 77c8220534..e0ecd14bbc 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PCreateAuthorByName.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PCreateAuthorByName.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PCreateAuthorByName extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1015838062; + private static final long serialVersionUID = -1655645727; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PEnhanceAddress1.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PEnhanceAddress1.java index c9287a7764..6f06a79ef2 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PEnhanceAddress1.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PEnhanceAddress1.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PEnhanceAddress1 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -2035146604; + private static final long serialVersionUID = -461494911; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PEnhanceAddress2.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PEnhanceAddress2.java index ce33794e4f..e78ee23825 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PEnhanceAddress2.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PEnhanceAddress2.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PEnhanceAddress2 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1777234644; + private static final long serialVersionUID = -1925575143; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PEnhanceAddress3.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PEnhanceAddress3.java index 5662a1056e..78f81864a1 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PEnhanceAddress3.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PEnhanceAddress3.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PEnhanceAddress3 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -2066107543; + private static final long serialVersionUID = 455858582; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PGetOneCursor.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PGetOneCursor.java index 4e480e70a9..757bb94858 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PGetOneCursor.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PGetOneCursor.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PGetOneCursor extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1153127452; + private static final long serialVersionUID = -2111213751; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PGetTwoCursors.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PGetTwoCursors.java index 9e46a3bdc3..982a9b683d 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PGetTwoCursors.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PGetTwoCursors.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PGetTwoCursors extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1742601811; + private static final long serialVersionUID = -1449505402; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PTriggers.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PTriggers.java index 49c1b23701..28eb1a1808 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PTriggers.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PTriggers.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PTriggers extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 442836247; + private static final long serialVersionUID = -1165530486; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PUnused.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PUnused.java index 019eee0e9b..ab967ad9a4 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PUnused.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/routines/PUnused.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PUnused extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1225610135; + private static final long serialVersionUID = 1417994844; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TArrays.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TArrays.java index b9f55e6cd4..a8e924510a 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TArrays.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TArrays.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TArrays extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1746769367; + private static final long serialVersionUID = -695940092; /** * The singleton instance of t_arrays diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TAuthor.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TAuthor.java index 1386918cfa..b264ffb56b 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TAuthor.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthor extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -931063630; + private static final long serialVersionUID = 2098102757; /** * The singleton instance of t_author diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBook.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBook.java index 041e5e5e69..1b2f3dfc37 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBook.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBook.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBook extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 476941154; + private static final long serialVersionUID = 863934997; /** * The singleton instance of t_book diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBookStore.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBookStore.java index 8ae65e4e4f..28443cea24 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBookStore.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBookStore.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1805205371; + private static final long serialVersionUID = -481756942; /** * The singleton instance of t_book_store diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBookToBookStore.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBookToBookStore.java index 009462bace..cdc96936d5 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBookToBookStore.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBookToBookStore.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -244924267; + private static final long serialVersionUID = -189074872; /** * The singleton instance of t_book_to_book_store diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TTriggers.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TTriggers.java index 5868c456ec..c66b289c9d 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TTriggers.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TTriggers.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TTriggers extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1578214003; + private static final long serialVersionUID = -1834245594; /** * The singleton instance of t_triggers diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_639NumbersTable.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_639NumbersTable.java index 8f4ccedc91..54a3ac8cd5 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_639NumbersTable.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_639NumbersTable.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1793860418; + private static final long serialVersionUID = 873924209; /** * The singleton instance of t_639_numbers_table diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_658Ref.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_658Ref.java index 9ab46f0d7c..046e59b9c2 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_658Ref.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_658Ref.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_658Ref extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 1498898036; + private static final long serialVersionUID = 1408514919; /** * The singleton instance of t_658_ref diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_725LobTest.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_725LobTest.java index 3726fd1e4b..1a8a7d829f 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_725LobTest.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_725LobTest.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -877363814; + private static final long serialVersionUID = 1879026823; /** * The singleton instance of t_725_lob_test diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_785.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_785.java index 10c1817869..5b7a8bdafe 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_785.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_785.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_785 extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -207062949; + private static final long serialVersionUID = 160275784; /** * The singleton instance of t_785 diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VAuthor.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VAuthor.java index f170b39d36..984041b199 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VAuthor.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VAuthor extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -539882979; + private static final long serialVersionUID = -108004336; /** * The singleton instance of v_author diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VBook.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VBook.java index a458b13fb0..631cf9651c 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VBook.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VBook.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VBook extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 2093603389; + private static final long serialVersionUID = -1767366614; /** * The singleton instance of v_book diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VLibrary.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VLibrary.java index 31c17873ff..d96180eb25 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VLibrary.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VLibrary.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VLibrary extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -2096104544; + private static final long serialVersionUID = 2033612685; /** * The singleton instance of v_library diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_64_69.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_64_69.java index e54da8d8c6..45896c5608 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_64_69.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_64_69.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -332657862; + private static final long serialVersionUID = 1434626215; /** * The singleton instance of x_test_case_64_69 diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_71.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_71.java index 96ac41f31e..32f796a569 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_71.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_71.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 119332098; + private static final long serialVersionUID = 1364208879; /** * The singleton instance of x_test_case_71 diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_85.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_85.java index 84b6a4e7a3..33b47c1ae3 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_85.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_85.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1992570722; + private static final long serialVersionUID = 1385292821; /** * The singleton instance of x_test_case_85 diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XUnused.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XUnused.java index ab572216b4..381c4a851f 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XUnused.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XUnused.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XUnused extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 340383491; + private static final long serialVersionUID = 30567350; /** * The singleton instance of x_unused diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TArraysRecord.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TArraysRecord.java index caee2746f6..1f6697e694 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TArraysRecord.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TArraysRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TArraysRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 41710699; + private static final long serialVersionUID = 709519070; /** * An uncommented item diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TAuthorRecord.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TAuthorRecord.java index 285415ba28..2f4ddec6c3 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TAuthorRecord.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TAuthorRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 2089804718; + private static final long serialVersionUID = -321564179; /** * An uncommented item @@ -35,7 +35,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByCoAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByCoAuthorId() { return create() .selectFrom(org.jooq.test.postgres.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.postgres.generatedclasses.tables.TBook.CO_AUTHOR_ID.equal(getValue(org.jooq.test.postgres.generatedclasses.tables.TAuthor.ID))) @@ -47,7 +47,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByAuthorId() { return create() .selectFrom(org.jooq.test.postgres.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.postgres.generatedclasses.tables.TBook.AUTHOR_ID.equal(getValue(org.jooq.test.postgres.generatedclasses.tables.TAuthor.ID))) diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TBookRecord.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TBookRecord.java index f9fddd49dd..f91150994b 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TBookRecord.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TBookRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1663060066; + private static final long serialVersionUID = -1926095497; /** * An uncommented item @@ -35,7 +35,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.postgres.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.postgres.generatedclasses.tables.TBookToBookStore.BOOK_ID.equal(getValue(org.jooq.test.postgres.generatedclasses.tables.TBook.ID))) @@ -74,7 +74,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() throws java.sql.SQLException { + public org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() { return create() .selectFrom(org.jooq.test.postgres.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.postgres.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.postgres.generatedclasses.tables.TBook.AUTHOR_ID))) @@ -113,7 +113,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() throws java.sql.SQLException { + public org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() { return create() .selectFrom(org.jooq.test.postgres.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.postgres.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.postgres.generatedclasses.tables.TBook.CO_AUTHOR_ID))) diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TBookStoreRecord.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TBookStoreRecord.java index f8fc72d467..d997abb93e 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TBookStoreRecord.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TBookStoreRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1663991637; + private static final long serialVersionUID = -33477322; /** * An uncommented item @@ -43,7 +43,7 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.postgres.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.postgres.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME.equal(getValue(org.jooq.test.postgres.generatedclasses.tables.TBookStore.NAME))) diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TBookToBookStoreRecord.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TBookToBookStoreRecord.java index 26eecdecd7..8a912ae27c 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TBookToBookStoreRecord.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TBookToBookStoreRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -327520406; + private static final long serialVersionUID = 1300896303; /** * An uncommented item @@ -50,7 +50,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.postgres.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() throws java.sql.SQLException { + public org.jooq.test.postgres.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() { return create() .selectFrom(org.jooq.test.postgres.generatedclasses.tables.TBookStore.T_BOOK_STORE) .where(org.jooq.test.postgres.generatedclasses.tables.TBookStore.NAME.equal(getValue(org.jooq.test.postgres.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME))) @@ -95,7 +95,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord fetchTBook() throws java.sql.SQLException { + public org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord fetchTBook() { return create() .selectFrom(org.jooq.test.postgres.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.postgres.generatedclasses.tables.TBook.ID.equal(getValue(org.jooq.test.postgres.generatedclasses.tables.TBookToBookStore.BOOK_ID))) diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TTriggersRecord.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TTriggersRecord.java index 7a0bad8112..6fe19855cc 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TTriggersRecord.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/TTriggersRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TTriggersRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1845694523; + private static final long serialVersionUID = -1384526856; /** * An uncommented item diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/T_639NumbersTableRecord.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/T_639NumbersTableRecord.java index fb4e627154..32153c3908 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/T_639NumbersTableRecord.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/T_639NumbersTableRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_639NumbersTableRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -866710492; + private static final long serialVersionUID = 668636753; /** * An uncommented item diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/T_658RefRecord.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/T_658RefRecord.java index 88d71990d7..4c3f554923 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/T_658RefRecord.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/T_658RefRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_658RefRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 991189007; + private static final long serialVersionUID = -610103998; /** * An uncommented item diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/T_725LobTestRecord.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/T_725LobTestRecord.java index f74fb55eb1..635f2bfbc6 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/T_725LobTestRecord.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/T_725LobTestRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_725LobTestRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -135220384; + private static final long serialVersionUID = -888081139; /** * An uncommented item diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/T_785Record.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/T_785Record.java index d99ca9450c..922d64933b 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/T_785Record.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/T_785Record.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_785Record extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1537543974; + private static final long serialVersionUID = 1110502803; /** * An uncommented item diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/VAuthorRecord.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/VAuthorRecord.java index d1898943ee..d6cde73d0e 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/VAuthorRecord.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/VAuthorRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VAuthorRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1910150643; + private static final long serialVersionUID = -134053082; /** * An uncommented item diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/VBookRecord.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/VBookRecord.java index ea3c3654f8..1fdec9f159 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/VBookRecord.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/VBookRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VBookRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -682408527; + private static final long serialVersionUID = 705377764; /** * An uncommented item diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/VLibraryRecord.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/VLibraryRecord.java index a3022b9aa2..1a55989a9f 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/VLibraryRecord.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/VLibraryRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VLibraryRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -467503019; + private static final long serialVersionUID = 1657900424; /** * An uncommented item diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/XTestCase_64_69Record.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/XTestCase_64_69Record.java index ad375be095..3931b6bf9f 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/XTestCase_64_69Record.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/XTestCase_64_69Record.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -2068935989; + private static final long serialVersionUID = -124747980; /** * An uncommented item @@ -35,7 +35,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_71List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_71List() { return create() .selectFrom(org.jooq.test.postgres.generatedclasses.tables.XTestCase_71.X_TEST_CASE_71) .where(org.jooq.test.postgres.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID.equal(getValueAsShort(org.jooq.test.postgres.generatedclasses.tables.XTestCase_64_69.ID))) @@ -74,7 +74,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.postgres.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.postgres.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.postgres.generatedclasses.tables.XTestCase_64_69.UNUSED_ID))) diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/XTestCase_71Record.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/XTestCase_71Record.java index 5b9612bc98..86e0c7e1c6 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/XTestCase_71Record.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/XTestCase_71Record.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1527041140; + private static final long serialVersionUID = -763928403; /** * An uncommented item @@ -62,7 +62,7 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.postgres.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() throws java.sql.SQLException { + public org.jooq.test.postgres.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() { return create() .selectFrom(org.jooq.test.postgres.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.postgres.generatedclasses.tables.XTestCase_64_69.ID.equal(getValueAsInteger(org.jooq.test.postgres.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID))) diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/XTestCase_85Record.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/XTestCase_85Record.java index d589b85e3a..d5df9fe70a 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/XTestCase_85Record.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/XTestCase_85Record.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1230802421; + private static final long serialVersionUID = -2041283360; /** * An uncommented item @@ -62,7 +62,7 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.postgres.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.postgres.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.postgres.generatedclasses.tables.XTestCase_85.X_UNUSED_ID))) diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/XUnusedRecord.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/XUnusedRecord.java index 0385567498..36496be2af 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/XUnusedRecord.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/records/XUnusedRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1731902717; + private static final long serialVersionUID = 1443421448; /** * An uncommented item @@ -35,7 +35,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_85List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_85List() { return create() .selectFrom(org.jooq.test.postgres.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85) .where(org.jooq.test.postgres.generatedclasses.tables.XTestCase_85.X_UNUSED_ID.equal(getValue(org.jooq.test.postgres.generatedclasses.tables.XUnused.ID))) @@ -48,7 +48,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXUnusedList() throws java.sql.SQLException { + public java.util.List fetchXUnusedList() { return create() .selectFrom(org.jooq.test.postgres.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.postgres.generatedclasses.tables.XUnused.ID_REF.equal(getValue(org.jooq.test.postgres.generatedclasses.tables.XUnused.ID))) @@ -61,7 +61,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_64_69List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_64_69List() { return create() .selectFrom(org.jooq.test.postgres.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.postgres.generatedclasses.tables.XTestCase_64_69.UNUSED_ID.equal(getValue(org.jooq.test.postgres.generatedclasses.tables.XUnused.ID))) @@ -132,7 +132,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.postgres.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.postgres.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.postgres.generatedclasses.tables.XUnused.ID_REF))) diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/udt/UAddressType.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/udt/UAddressType.java index d2a00d3b82..639dc768e5 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/udt/UAddressType.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/udt/UAddressType.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.udt; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class UAddressType extends org.jooq.impl.UDTImpl { - private static final long serialVersionUID = 95513460; + private static final long serialVersionUID = 1805761761; /** * The singleton instance of u_address_type diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/udt/UStreetType.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/udt/UStreetType.java index 9f898a9e75..f2a8f02289 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/udt/UStreetType.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/udt/UStreetType.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.udt; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class UStreetType extends org.jooq.impl.UDTImpl { - private static final long serialVersionUID = 229195260; + private static final long serialVersionUID = -2075501201; /** * The singleton instance of u_street_type diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/udt/records/UAddressTypeRecord.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/udt/records/UAddressTypeRecord.java index 5221b01984..8a52ac4a28 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/udt/records/UAddressTypeRecord.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/udt/records/UAddressTypeRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.udt.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class UAddressTypeRecord extends org.jooq.impl.UDTRecordImpl { - private static final long serialVersionUID = -113060629; + private static final long serialVersionUID = -1743968616; /** diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/udt/records/UStreetTypeRecord.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/udt/records/UStreetTypeRecord.java index ebe27c3959..40d6758166 100644 --- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/udt/records/UStreetTypeRecord.java +++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/udt/records/UStreetTypeRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.postgres.generatedclasses.udt.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class UStreetTypeRecord extends org.jooq.impl.UDTRecordImpl { - private static final long serialVersionUID = 1954868648; + private static final long serialVersionUID = -803420261; /** diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/Keys.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/Keys.java index 19bd7d3611..ea388a870a 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/Keys.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/Keys.java @@ -8,7 +8,7 @@ package org.jooq.test.sqlite.generatedclasses; * * A class modelling foreign key relationships between tables of the schema */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") @SuppressWarnings({"unchecked"}) public class Keys extends org.jooq.impl.AbstractKeys { diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/TLanguage.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/TLanguage.java index 9697e091eb..47fb9021e5 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/TLanguage.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/TLanguage.java @@ -6,7 +6,7 @@ package org.jooq.test.sqlite.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum TLanguage implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_11.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_11.java index 1fbdb49bd2..1ad935b894 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_11.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_11.java @@ -6,7 +6,7 @@ package org.jooq.test.sqlite.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_11 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_12.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_12.java index c2f03ee434..1eb1aeaa57 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_12.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_12.java @@ -6,7 +6,7 @@ package org.jooq.test.sqlite.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_12 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_21.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_21.java index 6aca909ff9..66e41444cb 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_21.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_21.java @@ -6,7 +6,7 @@ package org.jooq.test.sqlite.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_21 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_22.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_22.java index 56b6437911..b8302cb1e4 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_22.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_22.java @@ -6,7 +6,7 @@ package org.jooq.test.sqlite.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_22 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_31.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_31.java index 5006c99dff..5fd7a6ebc9 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_31.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_31.java @@ -6,7 +6,7 @@ package org.jooq.test.sqlite.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_31 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_32.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_32.java index 4bcaea4c71..bb5b011d0a 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_32.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/enums/T_658_32.java @@ -6,7 +6,7 @@ package org.jooq.test.sqlite.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_32 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/TAuthor.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/TAuthor.java index 53a590a3b4..883d3eb199 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/TAuthor.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/TAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlite.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthor extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -477539826; + private static final long serialVersionUID = 136884027; /** * The singleton instance of t_author diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/TBook.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/TBook.java index a064007026..3e37ed6e96 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/TBook.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/TBook.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlite.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBook extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -972853947; + private static final long serialVersionUID = -728029832; /** * The singleton instance of t_book diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/TBookStore.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/TBookStore.java index d638508554..3c1879cc43 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/TBookStore.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/TBookStore.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlite.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -243773237; + private static final long serialVersionUID = -683060104; /** * The singleton instance of t_book_store diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/TBookToBookStore.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/TBookToBookStore.java index c38ecc874c..a7dcea2900 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/TBookToBookStore.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/TBookToBookStore.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlite.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1295376356; + private static final long serialVersionUID = 1475204567; /** * The singleton instance of t_book_to_book_store diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/TTriggers.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/TTriggers.java index 5910768be1..5512af3adf 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/TTriggers.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/TTriggers.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlite.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TTriggers extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -26959046; + private static final long serialVersionUID = 830660711; /** * The singleton instance of t_triggers diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/T_639NumbersTable.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/T_639NumbersTable.java index 8d7b9cfdba..43326f8fb2 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/T_639NumbersTable.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/T_639NumbersTable.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlite.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1854529105; + private static final long serialVersionUID = 1726655044; /** * The singleton instance of t_639_numbers_table diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/T_658Ref.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/T_658Ref.java index 48f2a4c486..cec33de516 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/T_658Ref.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/T_658Ref.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlite.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_658Ref extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 1141475819; + private static final long serialVersionUID = 1411154520; /** * The singleton instance of t_658_ref diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/T_725LobTest.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/T_725LobTest.java index 991d606424..a8c7a64e68 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/T_725LobTest.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/T_725LobTest.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlite.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1306830578; + private static final long serialVersionUID = 1517774267; /** * The singleton instance of t_725_lob_test diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/T_785.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/T_785.java index 93ae69b951..a859c71998 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/T_785.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/T_785.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlite.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_785 extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -18469645; + private static final long serialVersionUID = -1779792986; /** * The singleton instance of t_785 diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/VAuthor.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/VAuthor.java index d240ac4d94..f667b1b367 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/VAuthor.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/VAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlite.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VAuthor extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 561666446; + private static final long serialVersionUID = -812890245; /** * The singleton instance of v_author diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/VBook.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/VBook.java index 905badc7a7..a2c15aae95 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/VBook.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/VBook.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlite.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VBook extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -1960136589; + private static final long serialVersionUID = 809012262; /** * The singleton instance of v_book diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/VLibrary.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/VLibrary.java index 0a196aef0e..72bc770826 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/VLibrary.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/VLibrary.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlite.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VLibrary extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -2094788471; + private static final long serialVersionUID = -1679445642; /** * The singleton instance of V_LIBRARY diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/XTestCase_64_69.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/XTestCase_64_69.java index 67c78c4386..139ceb7e9d 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/XTestCase_64_69.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/XTestCase_64_69.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlite.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1962478574; + private static final long serialVersionUID = -857773057; /** * The singleton instance of x_test_case_64_69 diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/XTestCase_71.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/XTestCase_71.java index bfb23eeabe..f71b8065d3 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/XTestCase_71.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/XTestCase_71.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlite.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -90308272; + private static final long serialVersionUID = -9065853; /** * The singleton instance of x_test_case_71 diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/XTestCase_85.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/XTestCase_85.java index a508f51e63..c02a330b39 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/XTestCase_85.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/XTestCase_85.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlite.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1844247217; + private static final long serialVersionUID = -623400196; /** * The singleton instance of x_test_case_85 diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/XUnused.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/XUnused.java index f1f168793e..766b7e80cc 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/XUnused.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/XUnused.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlite.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XUnused extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1804440595; + private static final long serialVersionUID = 2065519648; /** * The singleton instance of x_unused diff --git a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/records/TAuthorRecord.java b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/records/TAuthorRecord.java index 8f83d11fa1..5ad928c348 100644 --- a/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/records/TAuthorRecord.java +++ b/jOOQ-test/src/org/jooq/test/sqlite/generatedclasses/tables/records/TAuthorRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlite.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1893197168; + private static final long serialVersionUID = 190583203; /** * An uncommented item @@ -106,14 +106,4 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1405767346; + private static final long serialVersionUID = -457138171; /** * An uncommented item @@ -148,14 +148,4 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 622009294; + private static final long serialVersionUID = -1117064666; /** * An uncommented item @@ -50,14 +50,4 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1179843690; + private static final long serialVersionUID = -596808128; /** * An uncommented item @@ -68,14 +68,4 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 169030798; + private static final long serialVersionUID = 1000056389; /** * An uncommented item @@ -64,14 +64,4 @@ public class TTriggersRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 910124682; + private static final long serialVersionUID = -158054392; /** * An uncommented item @@ -204,14 +204,4 @@ public class T_639NumbersTableRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1226185966; + private static final long serialVersionUID = 328279117; /** * An uncommented item @@ -102,14 +102,4 @@ public class T_658RefRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1569516460; + private static final long serialVersionUID = -438444550; /** * An uncommented item @@ -50,14 +50,4 @@ public class T_725LobTestRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1560191166; + private static final long serialVersionUID = -473649562; /** * An uncommented item @@ -60,14 +60,4 @@ public class T_785Record extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -573280070; + private static final long serialVersionUID = 1770601977; /** * An uncommented item @@ -102,14 +102,4 @@ public class VAuthorRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1941700512; + private static final long serialVersionUID = 605653335; /** * An uncommented item @@ -144,14 +144,4 @@ public class VBookRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1357358804; + private static final long serialVersionUID = 1208622331; /** * An uncommented item @@ -46,14 +46,4 @@ public class VLibraryRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -492983022; + private static final long serialVersionUID = -984970698; /** * An uncommented item @@ -50,14 +50,4 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1568156762; + private static final long serialVersionUID = 202167376; /** * An uncommented item @@ -50,14 +50,4 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 525647382; + private static final long serialVersionUID = -1593755136; /** * An uncommented item @@ -64,14 +64,4 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -2007972830; + private static final long serialVersionUID = -1446817317; /** * An uncommented item @@ -242,14 +242,4 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl { diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_11.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_11.java index be7642e805..4d9c7b8b81 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_11.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_11.java @@ -6,7 +6,7 @@ package org.jooq.test.sqlserver.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_11 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_12.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_12.java index 8889fb882d..1b9b9a4129 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_12.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_12.java @@ -6,7 +6,7 @@ package org.jooq.test.sqlserver.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_12 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_21.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_21.java index d5135efcf6..ca4620512f 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_21.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_21.java @@ -6,7 +6,7 @@ package org.jooq.test.sqlserver.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_21 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_22.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_22.java index fdebb83238..a0307838d1 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_22.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_22.java @@ -6,7 +6,7 @@ package org.jooq.test.sqlserver.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_22 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_31.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_31.java index 27600b7434..d8177b1d9b 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_31.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_31.java @@ -6,7 +6,7 @@ package org.jooq.test.sqlserver.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_31 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_32.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_32.java index 2a13ccdb2f..6b509d0299 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_32.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/enums/T_658_32.java @@ -6,7 +6,7 @@ package org.jooq.test.sqlserver.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_32 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/F317.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/F317.java index 2dde3b2adc..af0ca4847f 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/F317.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/F317.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class F317 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -534267922; + private static final long serialVersionUID = -1854087653; /** diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/FAuthorExists.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/FAuthorExists.java index 295a67a30c..2569717ac3 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/FAuthorExists.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/FAuthorExists.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FAuthorExists extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1341381729; + private static final long serialVersionUID = 337138258; /** diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/FManyParameters.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/FManyParameters.java index 2595015525..221eb05229 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/FManyParameters.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/FManyParameters.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FManyParameters extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1143043062; + private static final long serialVersionUID = 1359745833; /** diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/FNumber.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/FNumber.java index d5da0c161b..bc855c414f 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/FNumber.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/FNumber.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FNumber extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 2080483226; + private static final long serialVersionUID = 1968318535; /** diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/FOne.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/FOne.java index 4324c35b9c..dee9faddd2 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/FOne.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/FOne.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FOne extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1436256354; + private static final long serialVersionUID = 794843537; /** diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/P391.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/P391.java index c59e042b30..b32a178146 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/P391.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/P391.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class P391 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1710876748; + private static final long serialVersionUID = 958547105; /** diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/PAuthorExists.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/PAuthorExists.java index 94a2b86d39..d118f4e4f0 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/PAuthorExists.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/PAuthorExists.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PAuthorExists extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -8235806; + private static final long serialVersionUID = -1225885291; /** diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/PCreateAuthor.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/PCreateAuthor.java index e0d5cb154c..0d4ee9facb 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/PCreateAuthor.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/PCreateAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PCreateAuthor extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -221404016; + private static final long serialVersionUID = 894885757; /** diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/PCreateAuthorByName.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/PCreateAuthorByName.java index 9d974fe61d..3fc4b73574 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/PCreateAuthorByName.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/PCreateAuthorByName.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PCreateAuthorByName extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 957448226; + private static final long serialVersionUID = -1547168235; /** diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/PManyParameters.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/PManyParameters.java index 7a2a099449..415a93f06c 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/PManyParameters.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/PManyParameters.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PManyParameters extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -190467780; + private static final long serialVersionUID = -1552603729; /** diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/PUnused.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/PUnused.java index 3c79655762..b96d87f8a4 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/PUnused.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/routines/PUnused.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PUnused extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 413703514; + private static final long serialVersionUID = 27807437; /** diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/TAuthor.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/TAuthor.java index 39b647aea3..05ce90ac60 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/TAuthor.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/TAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthor extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1980613077; + private static final long serialVersionUID = -372432824; /** * The singleton instance of t_author diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/TBook.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/TBook.java index 2fdc93d396..b5871b3d93 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/TBook.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/TBook.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBook extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1107446111; + private static final long serialVersionUID = 1627849108; /** * The singleton instance of t_book diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/TBookStore.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/TBookStore.java index 122c21b2ed..ad5ff57ef8 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/TBookStore.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/TBookStore.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 301793545; + private static final long serialVersionUID = 1427439094; /** * The singleton instance of t_book_store diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/TBookToBookStore.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/TBookToBookStore.java index 10664559a1..ea793eddd5 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/TBookToBookStore.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/TBookToBookStore.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 51559241; + private static final long serialVersionUID = -121578628; /** * The singleton instance of t_book_to_book_store diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/TTriggers.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/TTriggers.java index 3041d374aa..2fecac8af1 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/TTriggers.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/TTriggers.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TTriggers extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1655596617; + private static final long serialVersionUID = -1251171286; /** * The singleton instance of t_triggers diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/T_639NumbersTable.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/T_639NumbersTable.java index 6b9895a7d7..fec77c1d11 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/T_639NumbersTable.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/T_639NumbersTable.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1102828705; + private static final long serialVersionUID = -590746222; /** * The singleton instance of t_639_numbers_table diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/T_658Ref.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/T_658Ref.java index 402a14811f..36539a18b0 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/T_658Ref.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/T_658Ref.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_658Ref extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 1634142030; + private static final long serialVersionUID = 1689356091; /** * The singleton instance of t_658_ref diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/T_725LobTest.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/T_725LobTest.java index 5c23a9beb6..e1f357544c 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/T_725LobTest.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/T_725LobTest.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1347796209; + private static final long serialVersionUID = -1779975038; /** * The singleton instance of t_725_lob_test diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/T_785.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/T_785.java index ff2eef0663..967c19fa09 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/T_785.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/T_785.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_785 extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 1131931915; + private static final long serialVersionUID = -2017931394; /** * The singleton instance of t_785 diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/VAuthor.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/VAuthor.java index 543e7e1f2b..38892861ff 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/VAuthor.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/VAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VAuthor extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 563366644; + private static final long serialVersionUID = 2032082913; /** * The singleton instance of v_author diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/VBook.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/VBook.java index 242ee4700a..6f3387da5a 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/VBook.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/VBook.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VBook extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -1411677410; + private static final long serialVersionUID = -1048473845; /** * The singleton instance of v_book diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/VLibrary.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/VLibrary.java index f136de7523..df72751d0d 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/VLibrary.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/VLibrary.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VLibrary extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 503302523; + private static final long serialVersionUID = -1294595992; /** * The singleton instance of v_library diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/XTestCase_64_69.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/XTestCase_64_69.java index b9aa54aa5e..ce122313de 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/XTestCase_64_69.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/XTestCase_64_69.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1629070404; + private static final long serialVersionUID = 1047036471; /** * The singleton instance of x_test_case_64_69 diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/XTestCase_71.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/XTestCase_71.java index c3c245ccb9..2b2e0e49e3 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/XTestCase_71.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/XTestCase_71.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1710029444; + private static final long serialVersionUID = 1802047785; /** * The singleton instance of x_test_case_71 diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/XTestCase_85.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/XTestCase_85.java index 7b9ef18235..c16ab6eba0 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/XTestCase_85.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/XTestCase_85.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1515732; + private static final long serialVersionUID = 737791681; /** * The singleton instance of x_test_case_85 diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/XUnused.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/XUnused.java index ab45cd3be6..ec8b37c82f 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/XUnused.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/XUnused.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XUnused extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 726827122; + private static final long serialVersionUID = 1537172453; /** * The singleton instance of x_unused diff --git a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/records/TAuthorRecord.java b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/records/TAuthorRecord.java index b4caf9c34c..471b7f404a 100644 --- a/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/records/TAuthorRecord.java +++ b/jOOQ-test/src/org/jooq/test/sqlserver/generatedclasses/tables/records/TAuthorRecord.java @@ -6,11 +6,11 @@ package org.jooq.test.sqlserver.generatedclasses.tables.records; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1899169853; + private static final long serialVersionUID = -287794421; /** * An uncommented item @@ -35,7 +35,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByAuthorId() { return create() .selectFrom(org.jooq.test.sqlserver.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.sqlserver.generatedclasses.tables.TBook.AUTHOR_ID.equal(getValue(org.jooq.test.sqlserver.generatedclasses.tables.TAuthor.ID))) @@ -47,7 +47,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByCoAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByCoAuthorId() { return create() .selectFrom(org.jooq.test.sqlserver.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.sqlserver.generatedclasses.tables.TBook.CO_AUTHOR_ID.equal(getValue(org.jooq.test.sqlserver.generatedclasses.tables.TAuthor.ID))) @@ -130,14 +130,4 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1851119895; + private static final long serialVersionUID = 1644348459; /** * An uncommented item @@ -35,7 +35,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.sqlserver.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.sqlserver.generatedclasses.tables.TBookToBookStore.BOOK_ID.equal(getValue(org.jooq.test.sqlserver.generatedclasses.tables.TBook.ID))) @@ -74,7 +74,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.sqlserver.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() throws java.sql.SQLException { + public org.jooq.test.sqlserver.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() { return create() .selectFrom(org.jooq.test.sqlserver.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.sqlserver.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.sqlserver.generatedclasses.tables.TBook.AUTHOR_ID))) @@ -113,7 +113,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.sqlserver.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() throws java.sql.SQLException { + public org.jooq.test.sqlserver.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() { return create() .selectFrom(org.jooq.test.sqlserver.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.sqlserver.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.sqlserver.generatedclasses.tables.TBook.CO_AUTHOR_ID))) @@ -220,14 +220,4 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1816283625; + private static final long serialVersionUID = 1161081190; /** * An uncommented item @@ -43,7 +43,7 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.sqlserver.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.sqlserver.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME.equal(getValue(org.jooq.test.sqlserver.generatedclasses.tables.TBookStore.NAME))) @@ -56,14 +56,4 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -254093544; + private static final long serialVersionUID = 1511213867; /** * An uncommented item @@ -50,7 +50,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.sqlserver.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() throws java.sql.SQLException { + public org.jooq.test.sqlserver.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() { return create() .selectFrom(org.jooq.test.sqlserver.generatedclasses.tables.TBookStore.T_BOOK_STORE) .where(org.jooq.test.sqlserver.generatedclasses.tables.TBookStore.NAME.equal(getValue(org.jooq.test.sqlserver.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME))) @@ -95,7 +95,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.sqlserver.generatedclasses.tables.records.TBookRecord fetchTBook() throws java.sql.SQLException { + public org.jooq.test.sqlserver.generatedclasses.tables.records.TBookRecord fetchTBook() { return create() .selectFrom(org.jooq.test.sqlserver.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.sqlserver.generatedclasses.tables.TBook.ID.equal(getValue(org.jooq.test.sqlserver.generatedclasses.tables.TBookToBookStore.BOOK_ID))) @@ -122,14 +122,4 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 475735116; + private static final long serialVersionUID = -974543054; /** * An uncommented item @@ -64,14 +64,4 @@ public class TTriggersRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1619147698; + private static final long serialVersionUID = -1497082491; /** * An uncommented item @@ -204,14 +204,4 @@ public class T_639NumbersTableRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1586419162; + private static final long serialVersionUID = 1171439476; /** * An uncommented item @@ -162,14 +162,4 @@ public class T_658RefRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -70441462; + private static final long serialVersionUID = 570948637; /** * An uncommented item @@ -50,14 +50,4 @@ public class T_725LobTestRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1431247288; + private static final long serialVersionUID = 1938205941; /** * An uncommented item @@ -60,14 +60,4 @@ public class T_785Record extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1039687614; + private static final long serialVersionUID = -521420992; /** * An uncommented item @@ -102,14 +102,4 @@ public class VAuthorRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 2111774132; + private static final long serialVersionUID = -861587530; /** * An uncommented item @@ -144,14 +144,4 @@ public class VBookRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 95202514; + private static final long serialVersionUID = 1685790140; /** * An uncommented item @@ -46,14 +46,4 @@ public class VLibraryRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 2054348367; + private static final long serialVersionUID = -1804655856; /** * An uncommented item @@ -35,7 +35,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_71List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_71List() { return create() .selectFrom(org.jooq.test.sqlserver.generatedclasses.tables.XTestCase_71.X_TEST_CASE_71) .where(org.jooq.test.sqlserver.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID.equal(getValue(org.jooq.test.sqlserver.generatedclasses.tables.XTestCase_64_69.ID))) @@ -74,7 +74,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.sqlserver.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.sqlserver.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.sqlserver.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.sqlserver.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.sqlserver.generatedclasses.tables.XTestCase_64_69.UNUSED_ID))) @@ -87,14 +87,4 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -249196554; + private static final long serialVersionUID = 1182056455; /** * An uncommented item @@ -62,7 +62,7 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.sqlserver.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() throws java.sql.SQLException { + public org.jooq.test.sqlserver.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() { return create() .selectFrom(org.jooq.test.sqlserver.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.sqlserver.generatedclasses.tables.XTestCase_64_69.ID.equal(getValue(org.jooq.test.sqlserver.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID))) @@ -75,14 +75,4 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 2145759099; + private static final long serialVersionUID = 1528372264; /** * An uncommented item @@ -62,7 +62,7 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.sqlserver.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.sqlserver.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.sqlserver.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.sqlserver.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.sqlserver.generatedclasses.tables.XTestCase_85.X_UNUSED_ID))) @@ -100,14 +100,4 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -343748194; + private static final long serialVersionUID = -944136268; /** * An uncommented item @@ -35,7 +35,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_85List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_85List() { return create() .selectFrom(org.jooq.test.sqlserver.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85) .where(org.jooq.test.sqlserver.generatedclasses.tables.XTestCase_85.X_UNUSED_ID.equal(getValue(org.jooq.test.sqlserver.generatedclasses.tables.XUnused.ID))) @@ -48,7 +48,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXUnusedList() throws java.sql.SQLException { + public java.util.List fetchXUnusedList() { return create() .selectFrom(org.jooq.test.sqlserver.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.sqlserver.generatedclasses.tables.XUnused.ID_REF.equal(getValue(org.jooq.test.sqlserver.generatedclasses.tables.XUnused.ID))) @@ -61,7 +61,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_64_69List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_64_69List() { return create() .selectFrom(org.jooq.test.sqlserver.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.sqlserver.generatedclasses.tables.XTestCase_64_69.UNUSED_ID.equal(getValue(org.jooq.test.sqlserver.generatedclasses.tables.XUnused.ID))) @@ -132,7 +132,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.sqlserver.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.sqlserver.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.sqlserver.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.sqlserver.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.sqlserver.generatedclasses.tables.XUnused.ID_REF))) @@ -316,14 +316,4 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl { diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_11.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_11.java index b1ad41d566..6d6966a1ff 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_11.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_11.java @@ -6,7 +6,7 @@ package org.jooq.test.sybase.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_11 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_12.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_12.java index 8a91e5e239..6133563f66 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_12.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_12.java @@ -6,7 +6,7 @@ package org.jooq.test.sybase.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_12 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_21.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_21.java index 9f7a069167..dde2bbba8c 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_21.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_21.java @@ -6,7 +6,7 @@ package org.jooq.test.sybase.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_21 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_22.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_22.java index 86eb163d5f..a0c25fa46e 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_22.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_22.java @@ -6,7 +6,7 @@ package org.jooq.test.sybase.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_22 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_31.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_31.java index c3898ba08d..42bf9c80c1 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_31.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_31.java @@ -6,7 +6,7 @@ package org.jooq.test.sybase.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_31 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_32.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_32.java index fd1d444cd0..2b7a914dfd 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_32.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/enums/T_658_32.java @@ -6,7 +6,7 @@ package org.jooq.test.sybase.generatedclasses.enums; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public enum T_658_32 implements org.jooq.MasterDataType { diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/F317.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/F317.java index 557f9b3d89..579015e3b2 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/F317.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/F317.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class F317 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 492408438; + private static final long serialVersionUID = -1503782301; /** diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/FAuthorExists.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/FAuthorExists.java index 63d26f6fe0..e272fdafcf 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/FAuthorExists.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/FAuthorExists.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FAuthorExists extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -845463789; + private static final long serialVersionUID = -11456506; /** diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/FNumber.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/FNumber.java index 41dafc2d80..ce33a39a60 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/FNumber.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/FNumber.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FNumber extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -1115619552; + private static final long serialVersionUID = -1699297907; /** diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/FOne.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/FOne.java index 92be8034ca..b97ec38f53 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/FOne.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/FOne.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class FOne extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -784842306; + private static final long serialVersionUID = -1317710351; /** diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/P391.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/P391.java index 1de92066d8..4985e00bd7 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/P391.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/P391.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class P391 extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 1551656735; + private static final long serialVersionUID = 1693188684; /** diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/PAuthorExists.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/PAuthorExists.java index ecde6b181c..d49248ce6b 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/PAuthorExists.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/PAuthorExists.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PAuthorExists extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 2047305437; + private static final long serialVersionUID = -1144801776; /** diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/PCreateAuthor.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/PCreateAuthor.java index 4daaaedc41..7f82cbfd3d 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/PCreateAuthor.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/PCreateAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PCreateAuthor extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = -994943288; + private static final long serialVersionUID = -1983279243; /** diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/PCreateAuthorByName.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/PCreateAuthorByName.java index e6f7237861..9b96d57656 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/PCreateAuthorByName.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/PCreateAuthorByName.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PCreateAuthorByName extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 877137224; + private static final long serialVersionUID = -495821509; /** diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/PUnused.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/PUnused.java index 9a22993720..f48db87601 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/PUnused.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/routines/PUnused.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.routines; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class PUnused extends org.jooq.impl.AbstractRoutine { - private static final long serialVersionUID = 586666133; + private static final long serialVersionUID = -752596408; /** diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/TAuthor.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/TAuthor.java index 775c66e81c..bbb871468a 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/TAuthor.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/TAuthor.java @@ -8,11 +8,11 @@ package org.jooq.test.sybase.generatedclasses.tables; * * An entity holding authors of books */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthor extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1104359725; + private static final long serialVersionUID = 1566602208; /** * The singleton instance of t_author diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/TBook.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/TBook.java index 2bd82944c7..e75266b200 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/TBook.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/TBook.java @@ -8,11 +8,11 @@ package org.jooq.test.sybase.generatedclasses.tables; * * An entity holding books */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBook extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1383819953; + private static final long serialVersionUID = -826369214; /** * The singleton instance of t_book diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/TBookStore.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/TBookStore.java index 25116847bf..9dc8bd84b5 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/TBookStore.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/TBookStore.java @@ -8,11 +8,11 @@ package org.jooq.test.sybase.generatedclasses.tables; * * A book store */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1127529080; + private static final long serialVersionUID = -1050186523; /** * The singleton instance of t_book_store diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/TBookToBookStore.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/TBookToBookStore.java index 02424d41c1..11824e0a74 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/TBookToBookStore.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/TBookToBookStore.java @@ -8,11 +8,11 @@ package org.jooq.test.sybase.generatedclasses.tables; * * An m:n relation between books and book stores */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 688656719; + private static final long serialVersionUID = -1805407550; /** * The singleton instance of t_book_to_book_store diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/TTriggers.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/TTriggers.java index 36e3e94009..0c62f3d2e0 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/TTriggers.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/TTriggers.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TTriggers extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 1528639459; + private static final long serialVersionUID = 971593878; /** * The singleton instance of t_triggers diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/T_639NumbersTable.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/T_639NumbersTable.java index 57828e61ec..f004687246 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/T_639NumbersTable.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/T_639NumbersTable.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = 848808370; + private static final long serialVersionUID = 1262028325; /** * The singleton instance of t_639_numbers_table diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/T_658Ref.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/T_658Ref.java index 37d9cf4a7b..a61682eac7 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/T_658Ref.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/T_658Ref.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_658Ref extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -877029862; + private static final long serialVersionUID = -134086643; /** * The singleton instance of t_658_ref diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/T_725LobTest.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/T_725LobTest.java index 6db4e24872..3aa8a7554f 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/T_725LobTest.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/T_725LobTest.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -82701223; + private static final long serialVersionUID = -533937396; /** * The singleton instance of t_725_lob_test diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/T_785.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/T_785.java index 4390a18959..0b4f1aac93 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/T_785.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/T_785.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class T_785 extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 747228017; + private static final long serialVersionUID = -1206524834; /** * The singleton instance of t_785 diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/VAuthor.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/VAuthor.java index 21fecca0af..6142e81017 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/VAuthor.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/VAuthor.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VAuthor extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -186900862; + private static final long serialVersionUID = 1595829493; /** * The singleton instance of v_author diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/VBook.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/VBook.java index 194d4ac263..fbc1d85c2f 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/VBook.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/VBook.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VBook extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = -1371797505; + private static final long serialVersionUID = 1656224748; /** * The singleton instance of v_book diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/VLibrary.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/VLibrary.java index cdaa142d17..b84b451fd0 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/VLibrary.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/VLibrary.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class VLibrary extends org.jooq.impl.TableImpl { - private static final long serialVersionUID = 1048258131; + private static final long serialVersionUID = 1432183238; /** * The singleton instance of V_LIBRARY diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/XTestCase_64_69.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/XTestCase_64_69.java index 53c90acf57..a6a84d302d 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/XTestCase_64_69.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/XTestCase_64_69.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -352573112; + private static final long serialVersionUID = 1673283637; /** * The singleton instance of x_test_case_64_69 diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/XTestCase_71.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/XTestCase_71.java index 5a851c4255..46d29dbf24 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/XTestCase_71.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/XTestCase_71.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -1295713332; + private static final long serialVersionUID = 1735746297; /** * The singleton instance of x_test_case_71 diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/XTestCase_85.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/XTestCase_85.java index 4bc9da86ff..cfb632d3a0 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/XTestCase_85.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/XTestCase_85.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -759627823; + private static final long serialVersionUID = -1881522434; /** * The singleton instance of x_test_case_85 diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/XUnused.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/XUnused.java index 312ff81c37..6f121b918c 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/XUnused.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/XUnused.java @@ -6,11 +6,11 @@ package org.jooq.test.sybase.generatedclasses.tables; /** * This class is generated by jOOQ. */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class XUnused extends org.jooq.impl.UpdatableTableImpl { - private static final long serialVersionUID = -355761594; + private static final long serialVersionUID = -10483271; /** * The singleton instance of x_unused diff --git a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/records/TAuthorRecord.java b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/records/TAuthorRecord.java index 2a1a0fc211..64eeaf7f54 100644 --- a/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/records/TAuthorRecord.java +++ b/jOOQ-test/src/org/jooq/test/sybase/generatedclasses/tables/records/TAuthorRecord.java @@ -8,11 +8,11 @@ package org.jooq.test.sybase.generatedclasses.tables.records; * * An entity holding authors of books */ -@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"}, +@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"}, comments = "This class is generated by jOOQ") public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 690420595; + private static final long serialVersionUID = 348451657; /** * An uncommented item @@ -37,7 +37,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByAuthorId() { return create() .selectFrom(org.jooq.test.sybase.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.sybase.generatedclasses.tables.TBook.AUTHOR_ID.equal(getValue(org.jooq.test.sybase.generatedclasses.tables.TAuthor.ID))) @@ -49,7 +49,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByCoAuthorId() throws java.sql.SQLException { + public java.util.List fetchTBookListByCoAuthorId() { return create() .selectFrom(org.jooq.test.sybase.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.sybase.generatedclasses.tables.TBook.CO_AUTHOR_ID.equal(getValue(org.jooq.test.sybase.generatedclasses.tables.TAuthor.ID))) @@ -132,14 +132,4 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -598568390; + private static final long serialVersionUID = 2045657812; /** * An uncommented item @@ -37,7 +37,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.sybase.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.sybase.generatedclasses.tables.TBookToBookStore.BOOK_ID.equal(getValue(org.jooq.test.sybase.generatedclasses.tables.TBook.ID))) @@ -76,7 +76,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.sybase.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() throws java.sql.SQLException { + public org.jooq.test.sybase.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() { return create() .selectFrom(org.jooq.test.sybase.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.sybase.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.sybase.generatedclasses.tables.TBook.AUTHOR_ID))) @@ -115,7 +115,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.sybase.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() throws java.sql.SQLException { + public org.jooq.test.sybase.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() { return create() .selectFrom(org.jooq.test.sybase.generatedclasses.tables.TAuthor.T_AUTHOR) .where(org.jooq.test.sybase.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.sybase.generatedclasses.tables.TBook.CO_AUTHOR_ID))) @@ -222,14 +222,4 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -981902332; + private static final long serialVersionUID = -1518813527; /** * An uncommented item @@ -45,7 +45,7 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException { + public java.util.List fetchTBookToBookStoreList() { return create() .selectFrom(org.jooq.test.sybase.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE) .where(org.jooq.test.sybase.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME.equal(getValue(org.jooq.test.sybase.generatedclasses.tables.TBookStore.NAME))) @@ -58,14 +58,4 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1541853588; + private static final long serialVersionUID = -314805963; /** * An uncommented item @@ -52,7 +52,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.sybase.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() throws java.sql.SQLException { + public org.jooq.test.sybase.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() { return create() .selectFrom(org.jooq.test.sybase.generatedclasses.tables.TBookStore.T_BOOK_STORE) .where(org.jooq.test.sybase.generatedclasses.tables.TBookStore.NAME.equal(getValue(org.jooq.test.sybase.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME))) @@ -97,7 +97,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.sybase.generatedclasses.tables.records.TBookRecord fetchTBook() throws java.sql.SQLException { + public org.jooq.test.sybase.generatedclasses.tables.records.TBookRecord fetchTBook() { return create() .selectFrom(org.jooq.test.sybase.generatedclasses.tables.TBook.T_BOOK) .where(org.jooq.test.sybase.generatedclasses.tables.TBook.ID.equal(getValue(org.jooq.test.sybase.generatedclasses.tables.TBookToBookStore.BOOK_ID))) @@ -124,14 +124,4 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 695450020; + private static final long serialVersionUID = -2100046534; /** * An uncommented item @@ -64,14 +64,4 @@ public class TTriggersRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -365546834; + private static final long serialVersionUID = -1603033033; /** * An uncommented item @@ -204,14 +204,4 @@ public class T_639NumbersTableRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 112659690; + private static final long serialVersionUID = 832398336; /** * An uncommented item @@ -162,14 +162,4 @@ public class T_658RefRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -756721890; + private static final long serialVersionUID = 519529807; /** * An uncommented item @@ -50,14 +50,4 @@ public class T_725LobTestRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1854895458; + private static final long serialVersionUID = -578633071; /** * An uncommented item @@ -60,14 +60,4 @@ public class T_785Record extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1679649594; + private static final long serialVersionUID = -1083894972; /** * An uncommented item @@ -102,14 +102,4 @@ public class VAuthorRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -1679400064; + private static final long serialVersionUID = -1565348734; /** * An uncommented item @@ -144,14 +144,4 @@ public class VBookRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1157308116; + private static final long serialVersionUID = -268100730; /** * An uncommented item @@ -46,14 +46,4 @@ public class VLibraryRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -867971225; + private static final long serialVersionUID = -1221524216; /** * An uncommented item @@ -35,7 +35,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_71List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_71List() { return create() .selectFrom(org.jooq.test.sybase.generatedclasses.tables.XTestCase_71.X_TEST_CASE_71) .where(org.jooq.test.sybase.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID.equal(getValue(org.jooq.test.sybase.generatedclasses.tables.XTestCase_64_69.ID))) @@ -74,7 +74,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.sybase.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.sybase.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.sybase.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.sybase.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.sybase.generatedclasses.tables.XTestCase_64_69.UNUSED_ID))) @@ -87,14 +87,4 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 959516152; + private static final long serialVersionUID = -1931183965; /** * An uncommented item @@ -62,7 +62,7 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.sybase.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() throws java.sql.SQLException { + public org.jooq.test.sybase.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() { return create() .selectFrom(org.jooq.test.sybase.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.sybase.generatedclasses.tables.XTestCase_64_69.ID.equal(getValue(org.jooq.test.sybase.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID))) @@ -75,14 +75,4 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -574981949; + private static final long serialVersionUID = -701963048; /** * An uncommented item @@ -62,7 +62,7 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.sybase.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.sybase.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.sybase.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.sybase.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.sybase.generatedclasses.tables.XTestCase_85.X_UNUSED_ID))) @@ -100,14 +100,4 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1143857828; + private static final long serialVersionUID = -1972637986; /** * An uncommented item @@ -35,7 +35,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_85List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_85List() { return create() .selectFrom(org.jooq.test.sybase.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85) .where(org.jooq.test.sybase.generatedclasses.tables.XTestCase_85.X_UNUSED_ID.equal(getValue(org.jooq.test.sybase.generatedclasses.tables.XUnused.ID))) @@ -48,7 +48,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXUnusedList() throws java.sql.SQLException { + public java.util.List fetchXUnusedList() { return create() .selectFrom(org.jooq.test.sybase.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.sybase.generatedclasses.tables.XUnused.ID_REF.equal(getValue(org.jooq.test.sybase.generatedclasses.tables.XUnused.ID))) @@ -61,7 +61,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_64_69List() throws java.sql.SQLException { + public java.util.List fetchXTestCase_64_69List() { return create() .selectFrom(org.jooq.test.sybase.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69) .where(org.jooq.test.sybase.generatedclasses.tables.XTestCase_64_69.UNUSED_ID.equal(getValue(org.jooq.test.sybase.generatedclasses.tables.XUnused.ID))) @@ -132,7 +132,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl */ - public org.jooq.test.sybase.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException { + public org.jooq.test.sybase.generatedclasses.tables.records.XUnusedRecord fetchXUnused() { return create() .selectFrom(org.jooq.test.sybase.generatedclasses.tables.XUnused.X_UNUSED) .where(org.jooq.test.sybase.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.sybase.generatedclasses.tables.XUnused.ID_REF))) @@ -316,14 +316,4 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpltrue + + + org.apache.felix + maven-bundle-plugin + 2.1.0 + true + + + bundle-manifest + process-classes + + manifest + + + + + + jar + + + ${project.artifactId} + * + + javax.persistence;resolution:=optional, + oracle.sql;resolution:=optional, + org.apache.log4j;resolution:=optional, + * + + <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@))) + + + + + org.apache.maven.plugins + maven-jar-plugin + 2.3.2 + + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + - + Trac diff --git a/jOOQ/src/main/java/org/jooq/AliasProvider.java b/jOOQ/src/main/java/org/jooq/AliasProvider.java index 5fc79449d5..faf1f73ccb 100644 --- a/jOOQ/src/main/java/org/jooq/AliasProvider.java +++ b/jOOQ/src/main/java/org/jooq/AliasProvider.java @@ -49,7 +49,7 @@ public interface AliasProvider> extends QueryPart { * follows: *
    *
  • In declarative query sections : [ - * {@link QueryPartInternal#toSQLReference(Configuration)} <alias>]
  • + * {@link FactoryOperations#render(QueryPart)} <alias>] *
  • In referencial query sections : [<alias>]
  • *
* diff --git a/jOOQ/src/main/java/org/jooq/Batch.java b/jOOQ/src/main/java/org/jooq/Batch.java index 7153026d75..e0e484ce60 100644 --- a/jOOQ/src/main/java/org/jooq/Batch.java +++ b/jOOQ/src/main/java/org/jooq/Batch.java @@ -35,9 +35,10 @@ */ package org.jooq; -import java.sql.SQLException; import java.sql.Statement; +import org.jooq.exception.DataAccessException; + /** * A wrapper for a JDBC batch operation. It has two modes: *

@@ -55,7 +56,7 @@ import java.sql.Statement; * .execute(); * * - * + * * @author Lukas Eder * @see Statement#executeBatch() */ @@ -63,8 +64,9 @@ public interface Batch { /** * Execute the batch operation. - * + * * @see Statement#executeBatch() + * @throws DataAccessException if something went wrong executing the query */ - int[] execute() throws SQLException; + int[] execute() throws DataAccessException; } diff --git a/jOOQ/src/main/java/org/jooq/BatchBindStep.java b/jOOQ/src/main/java/org/jooq/BatchBindStep.java index ff4ab89d8c..d08736bab5 100644 --- a/jOOQ/src/main/java/org/jooq/BatchBindStep.java +++ b/jOOQ/src/main/java/org/jooq/BatchBindStep.java @@ -35,14 +35,15 @@ */ package org.jooq; -import java.sql.SQLException; import java.sql.Statement; +import org.jooq.exception.DataAccessException; + /** * This type is used for the {@link Batch}'s DSL API. *

* Use it to add bind values to a single operation in the batch statement. - * + * * @author Lukas Eder * @see Batch * @see Statement#executeBatch() @@ -51,6 +52,8 @@ public interface BatchBindStep extends Batch { /** * Set bind values on the batch statement + * + * @throws DataAccessException if something went wrong executing the query */ - BatchBindStep bind(Object... bindValues) throws SQLException; + BatchBindStep bind(Object... bindValues) throws DataAccessException; } diff --git a/jOOQ/src/main/java/org/jooq/BindContext.java b/jOOQ/src/main/java/org/jooq/BindContext.java index 6457e76cca..b22e1b9d81 100644 --- a/jOOQ/src/main/java/org/jooq/BindContext.java +++ b/jOOQ/src/main/java/org/jooq/BindContext.java @@ -36,9 +36,10 @@ package org.jooq; import java.sql.PreparedStatement; -import java.sql.SQLException; import java.util.Collection; +import org.jooq.exception.DataAccessException; + /** * The bind context is used for binding {@link QueryPart}'s and their contained * values to a {@link PreparedStatement}'s bind variables. A new bind context is @@ -46,7 +47,7 @@ import java.util.Collection; * will then pass the same context to their components *

* This interface is for JOOQ INTERNAL USE only. Do not reference directly - * + * * @author Lukas Eder * @see RenderContext */ @@ -73,29 +74,44 @@ public interface BindContext extends Context { /** * Bind values from a {@link QueryPart}. This will also increment the * internal counter. + * + * @throws DataAccessException If something went wrong while binding a + * variable */ - BindContext bind(QueryPart part) throws SQLException; + BindContext bind(QueryPart part) throws DataAccessException; /** * Bind values from several {@link QueryPart}'s. This will also increment * the internal counter. + * + * @throws DataAccessException If something went wrong while binding a + * variable */ - BindContext bind(Collection parts) throws SQLException; + BindContext bind(Collection parts) throws DataAccessException; /** * Bind values from several {@link QueryPart}'s. This will also increment * the internal counter. + * + * @throws DataAccessException If something went wrong while binding a + * variable */ - BindContext bind(QueryPart[] parts) throws SQLException; + BindContext bind(QueryPart[] parts) throws DataAccessException; /** * Bind a value using a specific type. This will also increment the internal * counter. + * + * @throws DataAccessException If something went wrong while binding a + * variable */ - BindContext bindValue(Object value, Class type) throws SQLException; + BindContext bindValue(Object value, Class type) throws DataAccessException; /** * Bind several values. This will also increment the internal counter. + * + * @throws DataAccessException If something went wrong while binding a + * variable */ - BindContext bindValues(Object... values) throws SQLException; + BindContext bindValues(Object... values) throws DataAccessException; } diff --git a/jOOQ/src/main/java/org/jooq/Cursor.java b/jOOQ/src/main/java/org/jooq/Cursor.java index a8863ceb63..5d6dd90354 100644 --- a/jOOQ/src/main/java/org/jooq/Cursor.java +++ b/jOOQ/src/main/java/org/jooq/Cursor.java @@ -37,10 +37,11 @@ package org.jooq; import java.sql.PreparedStatement; import java.sql.ResultSet; -import java.sql.SQLException; import java.util.Iterator; import java.util.List; +import org.jooq.exception.DataAccessException; + /** * Cursors allow for lazy, sequential access to an underlying JDBC * {@link ResultSet}. Unlike {@link Result}, data can only be accessed @@ -60,16 +61,20 @@ public interface Cursor extends FieldProvider, Iterable { *

* This will conveniently close the Cursor, after the last * Record was fetched. + * + * @throws DataAccessException if something went wrong executing the query */ - boolean hasNext() throws SQLException; + boolean hasNext() throws DataAccessException; /** * Fetch all remaining records as a result. *

* This will conveniently close the Cursor, after the last * Record was fetched. + * + * @throws DataAccessException if something went wrong executing the query */ - Result fetch() throws SQLException; + Result fetch() throws DataAccessException; /** * Fetch the next couple of records from the cursor. @@ -81,8 +86,9 @@ public interface Cursor extends FieldProvider, Iterable { * or negative an empty list is returned, the cursor is * untouched. If this is greater than the number of remaining * records, then all remaining records are returned. + * @throws DataAccessException if something went wrong executing the query */ - Result fetch(int number) throws SQLException; + Result fetch(int number) throws DataAccessException; /** * Fetch the next record from the cursor @@ -92,43 +98,18 @@ public interface Cursor extends FieldProvider, Iterable { * * @return The next record from the cursor, or null if there is * no next record. + * @throws DataAccessException if something went wrong executing the query */ - R fetchOne() throws SQLException; - - /** - * Fetch all remaining records as a result. - *

- * This will conveniently close the Cursor, after the last - * Record was fetched. - * - * @deprecated - 1.6.8 [#849] - Use {@link #fetch()} instead - */ - @Deprecated - Result fetchResult() throws SQLException; - - /** - * Fetch some records as a result - *

- * This will conveniently close the Cursor, if the last - * Record was fetched. - * - * @param number The number of records to fetch. If this is 0 - * or negative an empty result is returned, the cursor is - * untouched. If this is greater than the number of remaining - * records, then all remaining records are returned. - * - * @deprecated - 1.6.8 [#849] - Use {@link #fetch(int)} instead - */ - @Deprecated - Result fetchResult(int number) throws SQLException; + R fetchOne() throws DataAccessException; /** * Fetch results into a custom handler callback * * @param handler The handler callback * @return Convenience result, returning the parameter handler itself + * @throws DataAccessException if something went wrong executing the query */ - RecordHandler fetchInto(RecordHandler handler) throws SQLException; + RecordHandler fetchInto(RecordHandler handler) throws DataAccessException; /** * Map resulting records onto a custom type. @@ -140,8 +121,9 @@ public interface Cursor extends FieldProvider, Iterable { * @param type The entity type. * @see Record#into(Class) * @see Result#into(Class) + * @throws DataAccessException if something went wrong executing the query */ - List fetchInto(Class type) throws SQLException; + List fetchInto(Class type) throws DataAccessException; /** * Explicitly close the underlying {@link PreparedStatement} and @@ -150,8 +132,10 @@ public interface Cursor extends FieldProvider, Iterable { * If you fetch all records from the underlying {@link ResultSet}, jOOQ * Cursor implementations will close themselves for you. * Calling close() again will have no effect. + * + * @throws DataAccessException if something went wrong executing the query */ - void close() throws SQLException; + void close() throws DataAccessException; /** * Check whether this Cursor has been explicitly or diff --git a/jOOQ/src/main/java/org/jooq/FactoryOperations.java b/jOOQ/src/main/java/org/jooq/FactoryOperations.java new file mode 100644 index 0000000000..93ee91254b --- /dev/null +++ b/jOOQ/src/main/java/org/jooq/FactoryOperations.java @@ -0,0 +1,932 @@ +/** + * Copyright (c) 2009-2011, Lukas Eder, lukas.eder@gmail.com + * All rights reserved. + * + * This software is licensed to you under the Apache License, Version 2.0 + * (the "License"); You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * . Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * . Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * . Neither the name "jOOQ" nor the names of its contributors may be + * used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package org.jooq; + +import java.math.BigInteger; +import java.sql.Connection; +import java.sql.ResultSet; +import java.sql.Statement; +import java.util.Collection; +import java.util.List; + +import org.jooq.exception.DataAccessException; +import org.jooq.impl.Factory; + +/** + * The public API for the jOOQ {@link Factory} + * + * @author Sergey Epik + * @author Lukas Eder + * @see Factory + */ +public interface FactoryOperations extends Configuration { + + // ------------------------------------------------------------------------- + // RenderContext and BindContext accessors + // ------------------------------------------------------------------------- + + /** + * Render a QueryPart in the context of this factory + *

+ * This is the same as calling renderContext().render(part) + * + * @param part The {@link QueryPart} to be rendered + * @return The rendered SQL + */ + String render(QueryPart part); + + /** + * Render a QueryPart in the context of this factory, inlining all bind + * variables. + *

+ * This is the same as calling + * renderContext().inline(true).render(part) + * + * @param part The {@link QueryPart} to be rendered + * @return The rendered SQL + */ + String renderInlined(QueryPart part); + + // ------------------------------------------------------------------------- + // Attachable and Serializable API + // ------------------------------------------------------------------------- + + /** + * Attach this Factory to some attachables + */ + void attach(Attachable... attachables); + + /** + * Attach this Factory to some attachables + */ + void attach(Collection attachables); + + // ------------------------------------------------------------------------- + // Access to the loader API + // ------------------------------------------------------------------------- + + /** + * Create a new Loader object to load data from a CSV or XML + * source + */ + > LoaderOptionsStep loadInto(Table table); + + // ------------------------------------------------------------------------- + // Plain SQL object factory + // ------------------------------------------------------------------------- + + /** + * Create a new query holding plain SQL. There must not be any binding + * variables contained in the SQL + *

+ * Example: + *

+ *

+     * String sql = "SET SCHEMA 'abc'";
+ *

+ * 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! + * + * @param sql The SQL + * @return A query wrapping the plain SQL + */ + Query query(String sql); + + /** + * Create a new query holding plain SQL. There must be as many binding + * variables contained in the SQL, as passed in the bindings parameter + *

+ * Example: + *

+ *

+     * String sql = "SET SCHEMA 'abc'";
+ *

+ * 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! + * + * @param sql The SQL + * @param bindings The bindings + * @return A query wrapping the plain SQL + */ + Query query(String sql, Object... bindings); + + // ------------------------------------------------------------------------- + // JDBC convenience methods + // ------------------------------------------------------------------------- + + /** + * Fetch all data from a JDBC {@link ResultSet} and transform it to a jOOQ + * {@link Result}. After fetching all data, the JDBC ResultSet will be + * closed. + * + * @param rs The JDBC ResultSet to fetch data from + * @return The resulting jOOQ Result + * @throws DataAccessException if something went wrong executing the query + */ + Result fetch(ResultSet rs) throws DataAccessException; + + // ------------------------------------------------------------------------- + // Global Query factory + // ------------------------------------------------------------------------- + + /** + * Create a new DSL select statement + *

+ * Example:

+     * SELECT * FROM [table] WHERE [conditions] ORDER BY [ordering] LIMIT [limit clause]
+     * 
+ */ + SimpleSelectWhereStep selectFrom(Table table); + + /** + * Create a new DSL select statement. + *

+ * Example:

+     * Factory create = new Factory();
+     *
+     * create.select(field1, field2)
+     *       .from(table1)
+     *       .join(table2).on(field1.equal(field2))
+     *       .where(field1.greaterThan(100))
+     *       .orderBy(field2)
+     *       .execute();
+     * 
+ */ + SelectSelectStep select(Field... fields); + + /** + * Create a new DSL select statement for constant 0 literal + *

+ * Example:

+     * Factory create = new Factory();
+     *
+     * create.selectZero()
+     *       .from(table1)
+     *       .join(table2).on(field1.equal(field2))
+     *       .where(field1.greaterThan(100))
+     *       .orderBy(field2)
+     *       .execute();
+     * 
+ * + * @see Factory#zero() + */ + SelectSelectStep selectZero(); + + /** + * Create a new DSL select statement for constant 1 literal + *

+ * Example:

+     * Factory create = new Factory();
+     *
+     * create.selectOne()
+     *       .from(table1)
+     *       .join(table2).on(field1.equal(field2))
+     *       .where(field1.greaterThan(100))
+     *       .orderBy(field2)
+     *       .execute();
+     * 
+ * + * @see Factory#one() + */ + SelectSelectStep selectOne(); + + /** + * Create a new DSL select statement for COUNT(*) + *

+ * Example:

+     * Factory create = new Factory();
+     *
+     * create.selectCount()
+     *       .from(table1)
+     *       .join(table2).on(field1.equal(field2))
+     *       .where(field1.greaterThan(100))
+     *       .orderBy(field2)
+     *       .execute();
+     * 
+ */ + SelectSelectStep selectCount(); + + /** + * Create a new DSL select statement. + *

+ * Example:

+     * Factory create = new Factory();
+     *
+     * create.selectDistinct(field1, field2)
+     *       .from(table1)
+     *       .join(table2).on(field1.equal(field2))
+     *       .where(field1.greaterThan(100))
+     *       .orderBy(field2);
+     * 
+ */ + SelectSelectStep selectDistinct(Field... fields); + + /** + * Create a new DSL select statement. + *

+ * Example:

+     * Factory create = new Factory();
+     *
+     * create.select(fields)
+     *       .from(table1)
+     *       .join(table2).on(field1.equal(field2))
+     *       .where(field1.greaterThan(100))
+     *       .orderBy(field2);
+     * 
+ */ + SelectSelectStep select(Collection> fields); + + /** + * Create a new DSL select statement. + *

+ * Example:

+     * Factory create = new Factory();
+     *
+     * create.selectDistinct(fields)
+     *       .from(table1)
+     *       .join(table2).on(field1.equal(field2))
+     *       .where(field1.greaterThan(100))
+     *       .orderBy(field2);
+     * 
+ */ + SelectSelectStep selectDistinct(Collection> fields); + + /** + * Create a new {@link SelectQuery} + */ + SelectQuery selectQuery(); + + /** + * Create a new {@link SelectQuery} + * + * @param table The table to select data from + * @return The new {@link SelectQuery} + */ + SimpleSelectQuery selectQuery(TableLike table); + + /** + * Create a new {@link InsertQuery} + * + * @param into The table to insert data into + * @return The new {@link InsertQuery} + */ + > InsertQuery insertQuery(Table into); + + /** + * Create a new DSL insert statement. This type of insert may feel more + * convenient to some users, as it uses the UPDATE statement's + * SET a = b syntax. + *

+ * Example:

+     * Factory create = new Factory();
+     *
+     * create.insertInto(table)
+     *       .set(field1, value1)
+     *       .set(field2, value2)
+     *       .newRecord()
+     *       .set(field1, value3)
+     *       .set(field2, value4)
+     *       .onDuplicateKeyUpdate()
+     *       .set(field1, value1)
+     *       .set(field2, value2)
+     *       .execute();
+     * 
+ */ + > InsertSetStep insertInto(Table into); + + /** + * Create a new DSL insert statement. + *

+ * Example:

+     * Factory create = new Factory();
+     *
+     * create.insertInto(table, field1, field2)
+     *       .values(value1, value2)
+     *       .values(value3, value4)
+     *       .onDuplicateKeyUpdate()
+     *       .set(field1, value1)
+     *       .set(field2, value2)
+     *       .execute();
+     * 
+ */ + > InsertValuesStep insertInto(Table into, Field... fields); + + /** + * Create a new DSL insert statement. + *

+ * Example:

+     * Factory create = new Factory();
+     *
+     * create.insertInto(table, field1, field2)
+     *       .values(value1, value2)
+     *       .values(value3, value4)
+     *       .onDuplicateKeyUpdate()
+     *       .set(field1, value1)
+     *       .set(field2, value2)
+     *       .execute();
+     * 
+ */ + > InsertValuesStep insertInto(Table into, Collection> fields); + + /** + * Create a new DSL insert statement. + *

+ * Example:

+     * Factory create = new Factory();
+     *
+     * create.insertInto(table, create.select(1))
+     *       .onDuplicateKeyUpdate()
+     *       .set(field1, value1)
+     *       .set(field2, value2)
+     *       .execute();
+     * 
+ */ + > Insert insertInto(Table into, Select select); + + /** + * Create a new {@link UpdateQuery} + * + * @param table The table to update data into + * @return The new {@link UpdateQuery} + */ + > UpdateQuery updateQuery(Table table); + + /** + * Create a new DSL update statement. + *

+ * Example:

+     * Factory create = new Factory();
+     *
+     * create.update(table)
+     *       .set(field1, value1)
+     *       .set(field2, value2)
+     *       .where(field1.greaterThan(100))
+     *       .execute();
+     * 
+ */ + > UpdateSetStep update(Table table); + + /** + * Create a new DSL merge statement. + *

+ * This statement is available from DSL syntax only. It is known to be + * supported in some way by any of these dialects: + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
dialectsupport typedocumentation
DB2SQL:2008 standard and major enhancementshttp://publib.boulder.ibm.com/infocenter/db2luw/v9/index.jsp?topic=/com. + * ibm.db2.udb.admin.doc/doc/r0010873.htm
HSQLDBSQL:2008 standardhttp://hsqldb.org/doc/2.0/guide/dataaccess-chapt.html#N129BA
OracleSQL:2008 standard and minor enhancementshttp://download.oracle.com/docs/cd/B28359_01/server.111/b28286/ + * statements_9016.htm
SQL ServerSimilar to SQL:2008 standard with some major enhancementshttp://msdn.microsoft.com/de-de/library/bb510625.aspx
SybaseSimilar to SQL:2008 standard with some major enhancementshttp://dcx.sybase.com/1100/en/dbreference_en11/merge-statement.html
+ *

+ * Example:

+     * Factory create = new Factory();
+     *
+     * create.mergeInto(table)
+     *       .using(select)
+     *       .on(condition)
+     *       .whenMatchedThenUpdate()
+     *       .set(field1, value1)
+     *       .set(field2, value2)
+     *       .whenNotMatchedThenInsert(field1, field2)
+     *       .values(value1, value2)
+     *       .execute();
+     * 
+ */ + > MergeUsingStep mergeInto(Table table); + + /** + * Create a new {@link DeleteQuery} + * + * @param table The table to delete data from + * @return The new {@link DeleteQuery} + */ + > DeleteQuery deleteQuery(Table table); + + /** + * Create a new DSL delete statement. + *

+ * Example:

+     * Factory create = new Factory();
+     *
+     * create.delete(table)
+     *       .where(field1.greaterThan(100))
+     *       .execute();
+     * 
+ */ + > DeleteWhereStep delete(Table table); + + /** + * Execute a set of queries in batch mode (without bind values). + *

+ * This essentially runs the following logic:

+     * Statement s = connection.createStatement();
+     *
+     * for (Query query : queries) {
+     *     s.addBatch(renderInlined(query));
+     * }
+     *
+     * s.execute();
+     * 
+ * + * @see Statement#executeBatch() + */ + Batch batch(Query... queries); + + /** + * Execute a set of queries in batch mode (with bind values). + *

+ * When running

+     * create.batch(query)
+     *       .bind(valueA1, valueA2)
+     *       .bind(valueB1, valueB2)
+     *       .execute();
+     * 
+ *

+ * This essentially runs the following logic:

+     * Statement s = connection.prepareStatement(render(query));
+     *
+     * for (Object[] bindValues : allBindValues) {
+     *     for (Object bindValue : bindValues) {
+     *         s.setXXX(bindValue);
+     *     }
+     *
+     *     s.addBatch();
+     * }
+     *
+     * s.execute();
+     * 
+ * + * @see Statement#executeBatch() + */ + BatchBindStep batch(Query query); + + // ------------------------------------------------------------------------- + // DDL Statements + // ------------------------------------------------------------------------- + + /** + * Create a new DSL truncate statement. + *

+ * Example:

+     * Factory create = new Factory();
+     *
+     * create.truncate(table)
+     *       .execute();
+     * 
+ *

+ * Note, this statement is only supported in DSL mode. Immediate execution + * is omitted for future extensibility of this command. + */ + > Truncate truncate(Table table); + + // ------------------------------------------------------------------------- + // Other queries for identites and sequences + // ------------------------------------------------------------------------- + + /** + * Retrieve the last inserted ID. + *

+ * This is poorly supported by {@link SQLDialect#SQLITE}
+ * This is NOT supported by {@link SQLDialect#POSTGRES} and + * {@link SQLDialect#ORACLE} + * + * @return The last inserted ID. This may be null in some + * dialects, if no such number is available. + * @throws DataAccessException if something went wrong executing the query + */ + BigInteger lastID() throws DataAccessException; + + /** + * Convenience method to fetch the NEXTVAL for a sequence directly from this + * {@link Factory}'s underlying JDBC {@link Connection} + * + * @throws DataAccessException if something went wrong executing the query + */ + T nextval(Sequence sequence) throws DataAccessException; + + /** + * Convenience method to fetch the CURRVAL for a sequence directly from this + * {@link Factory}'s underlying JDBC {@link Connection} + * + * @throws DataAccessException if something went wrong executing the query + */ + T currval(Sequence sequence) throws DataAccessException; + + /** + * Use a schema as the default schema of the underlying connection. + *

+ * This has two effects. + *

    + *
  1. The USE [schema] statement is executed on those RDBMS + * that support this
  2. + *
  3. The supplied {@link Schema} is used as the default schema resulting + * in omitting that schema in rendered SQL.
  4. + *
+ *

+ * The USE [schema] statement translates to the various + * dialects as follows: + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
DialectCommand
DB2SET SCHEMA [schema]
Derby:SET SCHEMA [schema]
H2:SET SCHEMA [schema]
HSQLDB:SET SCHEMA [schema]
MySQL:USE [schema]
Oracle:ALTER SESSION SET CURRENT_SCHEMA = [schema]
Postgres:SET SEARCH_PATH = [schema]
Sybase:USE [schema]
+ * + * @throws DataAccessException if something went wrong executing the query + */ + int use(Schema schema) throws DataAccessException; + + /** + * Use a schema as the default schema of the underlying connection. + * + * @see #use(Schema) + * @throws DataAccessException if something went wrong executing the query + */ + int use(String schema) throws DataAccessException; + + // ------------------------------------------------------------------------- + // Global Record factory + // ------------------------------------------------------------------------- + + /** + * Create a new {@link Record} that can be inserted into the corresponding + * table. + * + * @param The generic record type + * @param table The table holding records of type <R> + * @return The new record + */ + R newRecord(Table table); + + // ------------------------------------------------------------------------- + // Fast querying + // ------------------------------------------------------------------------- + + /** + * Execute and return all records for + *

SELECT * FROM [table]
+ * + * @throws DataAccessException if something went wrong executing the query + */ + Result fetch(Table table) throws DataAccessException; + + /** + * Execute and return all records for + *
SELECT * FROM [table] WHERE [condition] 
+ * + * @throws DataAccessException if something went wrong executing the query + */ + Result fetch(Table table, Condition condition) throws DataAccessException; + + /** + * Execute and return zero or one record for + *
SELECT * FROM [table]
+ * + * @return The record or null if no record was returned + * @throws DataAccessException if something went wrong executing the query + */ + R fetchOne(Table table) throws DataAccessException; + + /** + * Execute and return zero or one record for + *
SELECT * FROM [table] WHERE [condition] 
+ * + * @return The record or null if no record was returned + * @throws DataAccessException if something went wrong executing the query + */ + R fetchOne(Table table, Condition condition) throws DataAccessException; + + /** + * Execute and return zero or one record for + *
SELECT * FROM [table] LIMIT 1
+ * + * @return The record or null if no record was returned + * @throws DataAccessException if something went wrong executing the query + */ + R fetchAny(Table table) throws DataAccessException; + + /** + * Insert one record + *
INSERT INTO [table] ... VALUES [record] 
+ * + * @return The number of inserted records + * @throws DataAccessException if something went wrong executing the query + */ + > int executeInsert(Table table, R record) throws DataAccessException; + + /** + * Update a table + *
UPDATE [table] SET [modified values in record] 
+ * + * @return The number of updated records + * @throws DataAccessException if something went wrong executing the query + */ + > int executeUpdate(Table table, R record) throws DataAccessException; + + /** + * Update a table + *
UPDATE [table] SET [modified values in record] WHERE [condition]
+ * + * @return The number of updated records + * @throws DataAccessException if something went wrong executing the query + */ + , T> int executeUpdate(Table table, R record, Condition condition) + throws DataAccessException; + + /** + * Update one record in a table + *
UPDATE [table] SET [modified values in record]
+ * + * @return The number of updated records + * @throws DataAccessException if something went wrong executing the query + */ + > int executeUpdateOne(Table table, R record) throws DataAccessException; + + /** + * Update one record in a table + *
UPDATE [table] SET [modified values in record] WHERE [condition]
+ * + * @return The number of updated records + * @throws DataAccessException if something went wrong executing the query + */ + , T> int executeUpdateOne(Table table, R record, Condition condition) + throws DataAccessException; + + /** + * Delete records from a table
DELETE FROM [table]
+ * + * @return The number of deleted records + * @throws DataAccessException if something went wrong executing the query + */ + > int executeDelete(Table table) throws DataAccessException; + + /** + * Delete records from a table + *
DELETE FROM [table] WHERE [condition]
+ * + * @return The number of deleted records + * @throws DataAccessException if something went wrong executing the query + */ + , T> int executeDelete(Table table, Condition condition) throws DataAccessException; + + /** + * Delete one record in a table
DELETE FROM [table]
+ * + * @return The number of deleted records + * @throws DataAccessException if something went wrong executing the query + */ + > int executeDeleteOne(Table table) throws DataAccessException; + + /** + * Delete one record in a table + *
DELETE FROM [table] WHERE [condition]
+ * + * @return The number of deleted records + * @throws DataAccessException if something went wrong executing the query + */ + , T> int executeDeleteOne(Table table, Condition condition) throws DataAccessException; + + /** + * Execute a new query holding plain SQL. + *

+ * Example (Postgres): + *

+ *

+     * String sql = "FETCH ALL IN \"\"";
Example + * (SQLite): + *

+ *

+     * String sql = "pragma table_info('my_table')";
+ *

+ * 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! + * + * @param sql The SQL + * @return The results from the executed query + * @throws DataAccessException if something went wrong executing the query + */ + Result fetch(String sql) throws DataAccessException; + + /** + * Execute a new query holding plain SQL. There must be as many binding + * variables contained in the SQL, as passed in the bindings parameter + *

+ * Example (Postgres): + *

+ *

+     * String sql = "FETCH ALL IN \"\"";
Example + * (SQLite): + *

+ *

+     * String sql = "pragma table_info('my_table')";
+ *

+ * 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! + * + * @param sql The SQL + * @param bindings The bindings + * @return A query wrapping the plain SQL + * @throws DataAccessException if something went wrong executing the query + */ + Result fetch(String sql, Object... bindings) throws DataAccessException; + + /** + * Execute a new query holding plain SQL, possibly returning several result + * sets + *

+ * Example (Sybase ASE): + *

+ *

+     * String sql = "sp_help 'my_table'";
+ *

+ * 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! + * + * @param sql The SQL + * @return The results from the executed query + * @throws DataAccessException if something went wrong executing the query + */ + List> fetchMany(String sql) throws DataAccessException; + + /** + * Execute a new query holding plain SQL, possibly returning several result + * sets. There must be as many binding variables contained in the SQL, as + * passed in the bindings parameter + *

+ * Example (Sybase ASE): + *

+ *

+     * String sql = "sp_help 'my_table'";
+ *

+ * 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! + * + * @param sql The SQL + * @param bindings The bindings + * @return A query wrapping the plain SQL + * @throws DataAccessException if something went wrong executing the query + */ + List> fetchMany(String sql, Object... bindings) throws DataAccessException; + + /** + * Execute a new query holding plain SQL. + *

+ * Example (Postgres): + *

+ *

+     * String sql = "FETCH ALL IN \"\"";
Example + * (SQLite): + *

+ *

+     * String sql = "pragma table_info('my_table')";
+ *

+ * 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! + * + * @param sql The SQL + * @return The results from the executed query + * @throws DataAccessException if something went wrong executing the query + */ + Record fetchOne(String sql) throws DataAccessException; + + /** + * Execute a new query holding plain SQL. There must be as many binding + * variables contained in the SQL, as passed in the bindings parameter + *

+ * Example (Postgres): + *

+ *

+     * String sql = "FETCH ALL IN \"\"";
Example + * (SQLite): + *

+ *

+     * String sql = "pragma table_info('my_table')";
+ *

+ * 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! + * + * @param sql The SQL + * @param bindings The bindings + * @return A query wrapping the plain SQL + * @throws DataAccessException if something went wrong executing the query + */ + Record fetchOne(String sql, Object... bindings) throws DataAccessException; +} diff --git a/jOOQ/src/main/java/org/jooq/Field.java b/jOOQ/src/main/java/org/jooq/Field.java index e924d28605..21fa9ef015 100644 --- a/jOOQ/src/main/java/org/jooq/Field.java +++ b/jOOQ/src/main/java/org/jooq/Field.java @@ -40,6 +40,8 @@ import java.math.BigDecimal; import java.util.Collection; import java.util.Map; +import org.jooq.impl.Factory; + /** * A field used in tables and conditions * @@ -105,7 +107,7 @@ public interface Field extends NamedTypeProviderQueryPart, AliasProvider * This results in the same as casting this field to - * {@link Field#getCastTypeName()} + * {@link DataType#getCastTypeName()} * * @param The generic type of the cast field * @param field The field whose type is used for the cast @@ -523,7 +525,7 @@ public interface Field extends NamedTypeProviderQueryPart, AliasProvider[this] * power(2, [value]), where power might also be simulated. * - * @see #power(Field) + * @see Factory#power(Field, Number) */ Field shl(Number value); @@ -534,7 +536,7 @@ public interface Field extends NamedTypeProviderQueryPart, AliasProvider[this] * power(2, [value]), where power might also be simulated. * - * @see #power(Field) + * @see Factory#power(Field, Field) */ Field shl(Field value); @@ -545,7 +547,7 @@ public interface Field extends NamedTypeProviderQueryPart, AliasProvider[this] / power(2, [value]), where power might also be simulated. * - * @see #power(Field) + * @see Factory#power(Field, Number) */ Field shr(Number value); @@ -556,7 +558,7 @@ public interface Field extends NamedTypeProviderQueryPart, AliasProvider[this] / power(2, [value]), where power might also be simulated. * - * @see #power(Field) + * @see Factory#power(Field, Field) */ Field shr(Field value); @@ -1454,30 +1456,6 @@ public interface Field extends NamedTypeProviderQueryPart, AliasProvider query); - /** - * this <= any (Select ...) - * - * @deprecated - 1.6.3 [#732] - use {@link #lessOrEqualAny(Select)} instead - */ - @Deprecated - Condition lessOrEqualToAny(Select query); - - /** - * this <= some (Select ...) - * - * @deprecated - 1.6.3 [#732] - use {@link #lessOrEqualSome(Select)} instead - */ - @Deprecated - Condition lessOrEqualToSome(Select query); - - /** - * this <= all (Select ...) - * - * @deprecated - 1.6.3 [#732] - use {@link #lessOrEqualAll(Select)} instead - */ - @Deprecated - Condition lessOrEqualToAll(Select query); - /** * this > value */ diff --git a/jOOQ/src/main/java/org/jooq/InsertQuery.java b/jOOQ/src/main/java/org/jooq/InsertQuery.java index dd5579085e..2eaaa02a49 100644 --- a/jOOQ/src/main/java/org/jooq/InsertQuery.java +++ b/jOOQ/src/main/java/org/jooq/InsertQuery.java @@ -111,7 +111,7 @@ public interface InsertQuery> extends StoreQuery, In * Configure the INSERT statement to return all fields in * R. * - * @see #getReturned() + * @see #getReturnedRecords() */ void setReturning(); @@ -120,7 +120,7 @@ public interface InsertQuery> extends StoreQuery, In * identity value. * * @param identity The table's identity - * @see #getReturned() + * @see #getReturnedRecords() */ void setReturning(Identity identity); @@ -129,7 +129,7 @@ public interface InsertQuery> extends StoreQuery, In * R. * * @param fields Fields to be returned - * @see #getReturned() + * @see #getReturnedRecords() */ void setReturning(Field... fields); @@ -138,37 +138,10 @@ public interface InsertQuery> extends StoreQuery, In * R. * * @param fields Fields to be returned - * @see #getReturned() + * @see #getReturnedRecords() */ void setReturning(Collection> fields); - /** - * The record holding returned values as specified by any of the - * {@link #setReturning()} methods. - *

- * This implemented differently for every dialect: - *

    - *
  • Postgres has native support for INSERT .. RETURNING - * clauses
  • - *
  • HSQLDB, Oracle, and DB2 JDBC drivers allow for retrieving any table - * column as "generated key" in one statement
  • - *
  • Derby, H2, MySQL, SQL Server only allow for retrieving IDENTITY - * column values as "generated key". If other fields are requested, a second - * statement is issued. Client code must assure transactional integrity - * between the two statements.
  • - *
  • Sybase and SQLite allow for retrieving IDENTITY values as - * @@identity or last_inserted_rowid() values. - * Those values are fetched in a separate SELECT statement. If - * other fields are requested, a second statement is issued. Client code - * must assure transactional integrity between the two statements.
  • - *
  • Ingres support will be added with #808
  • - *
- * - * @deprecated - 1.6.6 [#826] - Use {@link #getReturnedRecord()} instead - */ - @Deprecated - R getReturned(); - /** * The record holding returned values as specified by any of the * {@link #setReturning()} methods. diff --git a/jOOQ/src/main/java/org/jooq/InsertResultStep.java b/jOOQ/src/main/java/org/jooq/InsertResultStep.java index 72167b5b89..2334c22901 100644 --- a/jOOQ/src/main/java/org/jooq/InsertResultStep.java +++ b/jOOQ/src/main/java/org/jooq/InsertResultStep.java @@ -35,14 +35,14 @@ */ package org.jooq; -import java.sql.SQLException; +import org.jooq.exception.DataAccessException; /** * This type is used for the {@link Insert}'s DSL API. *

* Example:

  * Factory create = new Factory();
- *
+ * 
  * TableRecord record =
  * create.insertInto(table, field1, field2)
  *       .values(value1, value2)
@@ -65,7 +65,7 @@ import java.sql.SQLException;
  * fields are requested, a second statement is issued. Client code must assure
  * transactional integrity between the two statements.
  * 
- *
+ * 
  * @author Lukas Eder
  */
 public interface InsertResultStep extends Insert {
@@ -75,12 +75,16 @@ public interface InsertResultStep extends Insert {
      * {@link InsertReturningStep}
      * 

* This currently only works well for DB2, HSQLDB, MySQL, and Postgres + * + * @throws DataAccessException if something went wrong executing the query */ - Result fetch() throws SQLException; + Result fetch() throws DataAccessException; /** * The record holding returned values as specified by the * {@link InsertReturningStep} + * + * @throws DataAccessException if something went wrong executing the query */ - TableRecord fetchOne() throws SQLException; + TableRecord fetchOne() throws DataAccessException; } diff --git a/jOOQ/src/main/java/org/jooq/LoaderError.java b/jOOQ/src/main/java/org/jooq/LoaderError.java index 7ebe8b46ad..2dff1d716d 100644 --- a/jOOQ/src/main/java/org/jooq/LoaderError.java +++ b/jOOQ/src/main/java/org/jooq/LoaderError.java @@ -36,11 +36,12 @@ package org.jooq; import java.io.IOException; -import java.sql.SQLException; + +import org.jooq.exception.DataAccessException; /** * An error that occurred during loading. Errors are only handled when they were - * caused by {@link SQLException}'s. {@link IOException}'s and other problems + * caused by {@link DataAccessException}'s. {@link IOException}'s and other problems * will abort loading fatally. * * @author Lukas Eder @@ -48,9 +49,9 @@ import java.sql.SQLException; public interface LoaderError { /** - * The underlying {@link SQLException} that caused the error + * The underlying {@link DataAccessException} that caused the error */ - SQLException exception(); + DataAccessException exception(); /** * The processed row index starting with 0 that caused the error diff --git a/jOOQ/src/main/java/org/jooq/NamedTypeProviderQueryPart.java b/jOOQ/src/main/java/org/jooq/NamedTypeProviderQueryPart.java index 45a9f8554f..a857d823ae 100644 --- a/jOOQ/src/main/java/org/jooq/NamedTypeProviderQueryPart.java +++ b/jOOQ/src/main/java/org/jooq/NamedTypeProviderQueryPart.java @@ -59,20 +59,4 @@ public interface NamedTypeProviderQueryPart extends NamedQueryPart { */ DataType getDataType(Configuration configuration); - /** - * The type name of this object (might not be dialect-specific) - * - * @deprecated - Use {@link #getDataType()} and {@link #getDataType(Configuration)} instead - */ - @Deprecated - String getTypeName(); - - /** - * The dialect-specific type name of this object, used for casts - * - * @deprecated - Use {@link #getDataType()} and {@link #getDataType(Configuration)} instead - */ - @Deprecated - String getCastTypeName(); - } diff --git a/jOOQ/src/main/java/org/jooq/OrderProvider.java b/jOOQ/src/main/java/org/jooq/OrderProvider.java index a2fa30ef37..107361030d 100644 --- a/jOOQ/src/main/java/org/jooq/OrderProvider.java +++ b/jOOQ/src/main/java/org/jooq/OrderProvider.java @@ -70,7 +70,7 @@ public interface OrderProvider { *

* Indexes start at 1 in SQL! * - * @param fields The ordering fields + * @param fieldIndexes The ordering fields */ void addOrderBy(int... fieldIndexes); diff --git a/jOOQ/src/main/java/org/jooq/Query.java b/jOOQ/src/main/java/org/jooq/Query.java index 589c125a8c..91343253b9 100644 --- a/jOOQ/src/main/java/org/jooq/Query.java +++ b/jOOQ/src/main/java/org/jooq/Query.java @@ -36,10 +36,9 @@ package org.jooq; -import java.sql.SQLException; import java.util.List; -import org.jooq.exception.DetachedException; +import org.jooq.exception.DataAccessException; import org.jooq.impl.Factory; /** @@ -63,17 +62,15 @@ public interface Query extends QueryPart { *

  • {@link Truncate} : the result may have no meaning
  • *
  • {@link Update} : the number of updated records
  • * - * @throws SQLException If anything goes wrong in the database - * @throws DetachedException If the query is not attached + * @throws DataAccessException If anything goes wrong in the database */ - int execute() throws SQLException, DetachedException; + int execute() throws DataAccessException; /** * Retrieve the SQL code rendered by this Query *

    - * Unlike the recently deprecated {@link QueryPart#getSQL()} method, this - * method can be expected to work correctly for any SQL dialect, as a query - * is usually "attached" when created from a {@link Factory}. + * This method can be expected to work correctly for any SQL dialect, as a + * query is usually "attached" when created from a {@link Factory}. *

    * Use this method, when you want to use jOOQ for object oriented query * creation, but execute the query with some other technology, such as @@ -84,7 +81,6 @@ public interface Query extends QueryPart { *

  • etc...
  • * */ - @Override String getSQL(); /** diff --git a/jOOQ/src/main/java/org/jooq/QueryPart.java b/jOOQ/src/main/java/org/jooq/QueryPart.java index 4f2302e30b..92cdd3672f 100644 --- a/jOOQ/src/main/java/org/jooq/QueryPart.java +++ b/jOOQ/src/main/java/org/jooq/QueryPart.java @@ -35,7 +35,6 @@ */ package org.jooq; -import org.jooq.impl.Factory; /** * The common base type for all objects that can be used for query composition. @@ -51,26 +50,4 @@ import org.jooq.impl.Factory; */ public interface QueryPart extends Attachable { - /** - * Retrieve the SQL code rendered by this query part. - * - * @deprecated - 1.6.4 [#758][#776] - Use - * {@link RenderContext#render(QueryPart)} or - * {@link Factory#render(QueryPart)}, or {@link Query#getSQL()} - * instead. - *

    - * The internals of query rendering have been changed - * fundamentally. It is not recommended to render a - * {@link QueryPart} outside the scope of a - * {@link Configuration} or a {@link RenderContext}. - *

    - * The rationale is this: A {@link QueryPart} is - * {@link Configuration}-independent, hence it cannot know what - * kind of {@link SQLDialect} should be used for rendering. Some - * {@link QueryPart}'s are highly dependent on the SQL dialect. - * Instead, {@link RenderContext#render(QueryPart)} or - * {@link Factory#render(QueryPart)} should be used. - */ - @Deprecated - String getSQL(); } diff --git a/jOOQ/src/main/java/org/jooq/QueryPartInternal.java b/jOOQ/src/main/java/org/jooq/QueryPartInternal.java index d1900afb84..b2154081d3 100644 --- a/jOOQ/src/main/java/org/jooq/QueryPartInternal.java +++ b/jOOQ/src/main/java/org/jooq/QueryPartInternal.java @@ -36,10 +36,10 @@ package org.jooq; -import java.sql.PreparedStatement; -import java.sql.SQLException; import java.util.List; +import org.jooq.exception.DataAccessException; + /** * Base functionality declaration for all query objects *

    @@ -49,66 +49,6 @@ import java.util.List; */ public interface QueryPartInternal extends QueryPart { - /** - * Transform this object into SQL, such that it can be used as a reference. - * This always results in calling - * toSQLReference(configuration, false) - *

    - * This method is for JOOQ INTERNAL USE only. Do not reference directly - * - * @param configuration The configuration overriding dialects and schemata - * @return SQL representation of this QueryPart - * @see #toSQLReference(Configuration, boolean) - * @deprecated - 1.6.4 [#758] - Use {@link #toSQL(RenderContext)} instead - */ - @Deprecated - String toSQLReference(Configuration configuration); - - /** - * Transform this object into SQL, such that it can be used as a reference. - *

    - * This method is for JOOQ INTERNAL USE only. Do not reference directly - * - * @param configuration The configuration overriding dialects and schemata - * @param inlineParameters if set to true, all parameters are inlined, not - * replaced by "?" - * @return SQL representation of this QueryPart - * @deprecated - 1.6.4 [#758] - Use {@link #toSQL(RenderContext)} instead - */ - @Deprecated - String toSQLReference(Configuration configuration, boolean inlineParameters); - - /** - * Transform this object into SQL, such that it can be used as a - * declaration. Usually, this is the same as calling - * toSQLReference(configuration, false) - *

    - * This method is for JOOQ INTERNAL USE only. Do not reference directly - * - * @param configuration The configuration overriding dialects and schemata - * @return SQL representation of this QueryPart - * @see #toSQLDeclaration(Configuration, boolean) - * @deprecated - 1.6.4 [#758] - Use {@link #toSQL(RenderContext)} instead - */ - @Deprecated - String toSQLDeclaration(Configuration configuration); - - /** - * Transform this object into SQL, such that it can be used as a - * declaration. Usually, this is the same as calling - * toSQLReference(Configuration, boolean) - *

    - * This method is for JOOQ INTERNAL USE only. Do not reference directly - * - * @param configuration The configuration overriding dialects and schemata - * @param inlineParameters if set to true, all parameters are inlined, not - * replaced by "?" - * @return SQL representation of this QueryPart - * @deprecated - 1.6.4 [#758] - Use {@link #toSQL(RenderContext)} instead - */ - @Deprecated - String toSQLDeclaration(Configuration configuration, boolean inlineParameters); - /** * Render this {@link QueryPart} to a SQL string contained in * context.sql(). The context will contain @@ -126,103 +66,6 @@ public interface QueryPartInternal extends QueryPart { */ List getBindValues(); - /** - * Bind all parameters of this QueryPart to a PreparedStatement. This always - * results in calling bind(configuration, stmt, 1) - *

    - * This method is for JOOQ INTERNAL USE only. Do not reference directly - * - * @param configuration The configuration overriding dialects and schemata - * @param stmt The statement to bind values to - * @return The index of the next binding variable - * @throws SQLException - * @see #bind(Configuration, PreparedStatement, int) - * @deprecated - Use - * {@link #bindReference(Configuration, PreparedStatement)} - * instead - */ - @Deprecated - int bind(Configuration configuration, PreparedStatement stmt) throws SQLException; - - /** - * Bind all parameters of this QueryPart to a PreparedStatement. - *

    - * This method is for JOOQ INTERNAL USE only. Do not reference directly - * - * @param configuration The configuration overriding dialects and schemata - * @param stmt The statement to bind values to - * @param initialIndex The index of the next binding variable - * @return The index of the next binding variable - * @throws SQLException - * @deprecated - Use - * {@link #bindReference(Configuration, PreparedStatement, int)} - * instead - */ - @Deprecated - int bind(Configuration configuration, PreparedStatement stmt, int initialIndex) throws SQLException; - - /** - * Bind all parameters of this QueryPart to a PreparedStatement. This always - * results in calling bind(configuration, stmt, 1) - *

    - * This method is for JOOQ INTERNAL USE only. Do not reference directly - * - * @param configuration The configuration overriding dialects and schemata - * @param stmt The statement to bind values to - * @return The index of the next binding variable - * @throws SQLException - * @see #bind(Configuration, PreparedStatement, int) - * @deprecated - 1.6.5 [#758] - Use {@link #bind(BindContext)} instead - */ - @Deprecated - int bindReference(Configuration configuration, PreparedStatement stmt) throws SQLException; - - /** - * Bind all parameters of this QueryPart to a PreparedStatement. - *

    - * This method is for JOOQ INTERNAL USE only. Do not reference directly - * - * @param configuration The configuration overriding dialects and schemata - * @param stmt The statement to bind values to - * @param initialIndex The index of the next binding variable - * @return The index of the next binding variable - * @throws SQLException - * @deprecated - 1.6.5 [#758] - Use {@link #bind(BindContext)} instead - */ - @Deprecated - int bindReference(Configuration configuration, PreparedStatement stmt, int initialIndex) throws SQLException; - - /** - * Bind all parameters of this QueryPart to a PreparedStatement. This always - * results in calling bind(configuration, stmt, 1) - *

    - * This method is for JOOQ INTERNAL USE only. Do not reference directly - * - * @param configuration The configuration overriding dialects and schemata - * @param stmt The statement to bind values to - * @return The index of the next binding variable - * @throws SQLException - * @see #bind(Configuration, PreparedStatement, int) - * @deprecated - 1.6.5 [#758] - Use {@link #bind(BindContext)} instead - */ - @Deprecated - int bindDeclaration(Configuration configuration, PreparedStatement stmt) throws SQLException; - - /** - * Bind all parameters of this QueryPart to a PreparedStatement. - *

    - * This method is for JOOQ INTERNAL USE only. Do not reference directly - * - * @param configuration The configuration overriding dialects and schemata - * @param stmt The statement to bind values to - * @param initialIndex The index of the next binding variable - * @return The index of the next binding variable - * @throws SQLException - * @deprecated - 1.6.5 [#758] - Use {@link #bind(BindContext)} instead - */ - @Deprecated - int bindDeclaration(Configuration configuration, PreparedStatement stmt, int initialIndex) throws SQLException; - /** * Bind all parameters of this QueryPart to a PreparedStatement *

    @@ -230,8 +73,10 @@ public interface QueryPartInternal extends QueryPart { * * @param context The context holding the next bind index and other * information for variable binding + * @throws DataAccessException If something went wrong while binding a + * variable */ - void bind(BindContext context) throws SQLException; + void bind(BindContext context) throws DataAccessException; /** * Reproduce the SQL dialect this QueryPart was created with diff --git a/jOOQ/src/main/java/org/jooq/Result.java b/jOOQ/src/main/java/org/jooq/Result.java index ed99706ba6..c07f9f6eb6 100644 --- a/jOOQ/src/main/java/org/jooq/Result.java +++ b/jOOQ/src/main/java/org/jooq/Result.java @@ -39,7 +39,6 @@ package org.jooq; import java.math.BigDecimal; import java.math.BigInteger; import java.sql.Date; -import java.sql.SQLException; import java.sql.Time; import java.sql.Timestamp; import java.util.List; @@ -55,28 +54,6 @@ import org.w3c.dom.Document; */ public interface Result extends FieldProvider, List, Attachable { - /** - * The resulting records - * - * @deprecated - 1.6.2 [#699] - Result now implements {@link List}, hence - * this method is no longer necessary. - */ - @Deprecated - List getRecords(); - - /** - * Returns a record at a given index - * - * @param index The record's index - * @return The Record - * @throws IndexOutOfBoundsException - * @deprecated - 1.6.2 [#699] - Result now implements {@link List}, hence - * this method is no longer necessary. Use {@link #get(int)} - * instead - */ - @Deprecated - R getRecord(int index) throws IndexOutOfBoundsException; - /** * Convenience method to fetch a value at a given position in the result. * @@ -1632,16 +1609,6 @@ public interface Result extends FieldProvider, List, Attach */ List getValuesAsTimestamp(String fieldName); - /** - * The number of resulting records - * - * @deprecated - 1.6.2 [#699] - Result now implements {@link List}, hence - * this method is no longer necessary. Use {@link #size()} - * instead - */ - @Deprecated - int getNumberOfRecords(); - /** * Whether there are any records contained in this Result */ @@ -1768,6 +1735,6 @@ public interface Result extends FieldProvider, List, Attach * @param handler The handler callback * @return Convenience result, returning the parameter handler itself */ - > H into(H handler) throws SQLException; + > H into(H handler); } diff --git a/jOOQ/src/main/java/org/jooq/ResultQuery.java b/jOOQ/src/main/java/org/jooq/ResultQuery.java index d9b4101054..a6ea605b0a 100644 --- a/jOOQ/src/main/java/org/jooq/ResultQuery.java +++ b/jOOQ/src/main/java/org/jooq/ResultQuery.java @@ -38,11 +38,12 @@ package org.jooq; import java.sql.PreparedStatement; import java.sql.ResultSet; -import java.sql.SQLException; import java.util.List; import java.util.Map; import java.util.concurrent.ExecutorService; +import org.jooq.exception.DataAccessException; + /** * A query that can return results. Mostly, this is a {@link Select} query used * for a SELECT statement. @@ -75,8 +76,9 @@ public interface ResultQuery extends Query { * {@link #getResult()} * * @return The result. + * @throws DataAccessException if something went wrong executing the query */ - Result fetch() throws SQLException; + Result fetch() throws DataAccessException; /** * Execute the query and return the generated result @@ -89,12 +91,12 @@ public interface ResultQuery extends Query { * Client code is responsible for closing the cursor after use. * * @return The resulting cursor. + * @throws DataAccessException if something went wrong executing the query */ - Cursor fetchLazy() throws SQLException; + Cursor fetchLazy() throws DataAccessException; /** - * Execute a query, possibly returning several result - * sets. + * Execute a query, possibly returning several result sets. *

    * Example (Sybase ASE): *

    @@ -102,8 +104,9 @@ public interface ResultQuery extends Query { * String sql = "sp_help 'my_table'"; * * @return The resulting records + * @throws DataAccessException if something went wrong executing the query */ - List> fetchMany() throws SQLException; + List> fetchMany() throws DataAccessException; /** * Execute the query and return all values for a field from the generated @@ -113,8 +116,9 @@ public interface ResultQuery extends Query { * {@link Result#getValues(Field)} * * @return The resulting values. + * @throws DataAccessException if something went wrong executing the query */ - List fetch(Field field) throws SQLException; + List fetch(Field field) throws DataAccessException; /** * Execute the query and return all values for a field index from the @@ -124,8 +128,9 @@ public interface ResultQuery extends Query { * {@link Result#getValues(int)} * * @return The resulting values. + * @throws DataAccessException if something went wrong executing the query */ - List fetch(int fieldIndex) throws SQLException; + List fetch(int fieldIndex) throws DataAccessException; /** * Execute the query and return all values for a field index from the @@ -135,8 +140,9 @@ public interface ResultQuery extends Query { * {@link Result#getValues(int, Class)} * * @return The resulting values. + * @throws DataAccessException if something went wrong executing the query */ - List fetch(int fieldIndex, Class type) throws SQLException; + List fetch(int fieldIndex, Class type) throws DataAccessException; /** * Execute the query and return all values for a field name from the @@ -146,8 +152,9 @@ public interface ResultQuery extends Query { * {@link Result#getValues(String)} * * @return The resulting values. + * @throws DataAccessException if something went wrong executing the query */ - List fetch(String fieldName) throws SQLException; + List fetch(String fieldName) throws DataAccessException; /** * Execute the query and return all values for a field name from the @@ -157,8 +164,9 @@ public interface ResultQuery extends Query { * {@link Result#getValues(String, Class)} * * @return The resulting values. + * @throws DataAccessException if something went wrong executing the query */ - List fetch(String fieldName, Class type) throws SQLException; + List fetch(String fieldName, Class type) throws DataAccessException; /** * Execute the query and return return at most one resulting value for a @@ -169,13 +177,13 @@ public interface ResultQuery extends Query { * * @return The resulting value or null if the query returned no * records. - * @throws SQLException This exception is thrown + * @throws DataAccessException This exception is thrown *

      *
    • if something went wrong executing the query
    • if * the query returned more than one value
    • *
    */ - T fetchOne(Field field) throws SQLException; + T fetchOne(Field field) throws DataAccessException; /** * Execute the query and return return at most one resulting value for a @@ -186,13 +194,13 @@ public interface ResultQuery extends Query { * * @return The resulting value or null if the query returned no * records. - * @throws SQLException This exception is thrown + * @throws DataAccessException This exception is thrown *
      *
    • if something went wrong executing the query
    • if * the query returned more than one value
    • *
    */ - Object fetchOne(int fieldIndex) throws SQLException; + Object fetchOne(int fieldIndex) throws DataAccessException; /** * Execute the query and return return at most one resulting value for a @@ -203,13 +211,13 @@ public interface ResultQuery extends Query { * * @return The resulting value or null if the query returned no * records. - * @throws SQLException This exception is thrown + * @throws DataAccessException This exception is thrown *
      *
    • if something went wrong executing the query
    • if * the query returned more than one value
    • *
    */ - T fetchOne(int fieldIndex, Class type) throws SQLException; + T fetchOne(int fieldIndex, Class type) throws DataAccessException; /** * Execute the query and return return at most one resulting value for a @@ -220,13 +228,13 @@ public interface ResultQuery extends Query { * * @return The resulting value or null if the query returned no * records. - * @throws SQLException This exception is thrown + * @throws DataAccessException This exception is thrown *
      *
    • if something went wrong executing the query
    • if * the query returned more than one value
    • *
    */ - Object fetchOne(String fieldName) throws SQLException; + Object fetchOne(String fieldName) throws DataAccessException; /** * Execute the query and return return at most one resulting value for a @@ -237,47 +245,48 @@ public interface ResultQuery extends Query { * * @return The resulting value or null if the query returned no * records. - * @throws SQLException This exception is thrown + * @throws DataAccessException This exception is thrown *
      *
    • if something went wrong executing the query
    • if * the query returned more than one value
    • *
    */ - T fetchOne(String fieldName, Class type) throws SQLException; + T fetchOne(String fieldName, Class type) throws DataAccessException; /** * Execute the query and return at most one resulting record. * * @return The resulting record or null if the query returns no * records. - * @throws SQLException This exception is thrown + * @throws DataAccessException This exception is thrown *
      *
    • if something went wrong executing the query
    • *
    • if the query returned more than one record
    • *
    */ - R fetchOne() throws SQLException; + R fetchOne() throws DataAccessException; /** * Execute the query and return at most one resulting record. * * @return The first resulting record or null if the query * returns no records. + * @throws DataAccessException if something went wrong executing the query */ - R fetchAny() throws SQLException; + R fetchAny() throws DataAccessException; /** * Execute the query and return the generated result as a list of name/value * maps. * * @return The result. - * @throws SQLException This exception is thrown + * @throws DataAccessException This exception is thrown *
      *
    • if something went wrong executing the query
    • *
    • if several fields share the same name
    • *
    */ - List> fetchMaps() throws SQLException; + List> fetchMaps() throws DataAccessException; /** * Execute the query and return at most one resulting record as a name/value @@ -285,14 +294,14 @@ public interface ResultQuery extends Query { * * @return The resulting record or null if the query returns no * records. - * @throws SQLException This exception is thrown + * @throws DataAccessException This exception is thrown *
      *
    • if something went wrong executing the query
    • *
    • if the query returned more than one record
    • *
    • if several fields share the same name
    • *
    */ - Map fetchOneMap() throws SQLException; + Map fetchOneMap() throws DataAccessException; /** * Execute the query and return a {@link Map} with one of the result's @@ -305,14 +314,14 @@ public interface ResultQuery extends Query { * @param key The key field. Client code must assure that this field is * unique in the result set. * @return A Map containing the results - * @throws SQLException This exception is thrown + * @throws DataAccessException This exception is thrown *
      *
    • if something went wrong executing the query
    • if * the key field returned two or more equal values from the * result set.
    • *
    */ - Map fetchMap(Field key) throws SQLException; + Map fetchMap(Field key) throws DataAccessException; /** * Execute the query and return a {@link Map} with one of the result's @@ -327,14 +336,14 @@ public interface ResultQuery extends Query { * unique in the result set. * @param value The value field * @return A Map containing the results - * @throws SQLException This exception is thrown + * @throws DataAccessException This exception is thrown *
      *
    • if something went wrong executing the query
    • if * the key field returned two or more equal values from the * result set.
    • *
    */ - Map fetchMap(Field key, Field value) throws SQLException; + Map fetchMap(Field key, Field value) throws DataAccessException; /** * Execute the query and return the generated result as an Object matrix @@ -343,8 +352,21 @@ public interface ResultQuery extends Query { *
    query.fetchArray()[recordIndex][fieldIndex]
    * * @return The result. + * @throws DataAccessException if something went wrong executing the query */ - Object[][] fetchArrays() throws SQLException; + Object[][] fetchArrays() throws DataAccessException; + + /** + * Execute the query and return all values for a field index from the + * generated result. + *

    + * You can access data like this + *

    query.fetchArray(fieldIndex)[recordIndex]
    + * + * @return The resulting values. + * @throws DataAccessException if something went wrong executing the query + */ + Object[] fetchArray(int fieldIndex) throws DataAccessException; /** * Execute the query and return all values for a field index from the @@ -355,18 +377,7 @@ public interface ResultQuery extends Query { * * @return The resulting values. */ - Object[] fetchArray(int fieldIndex) throws SQLException; - - /** - * Execute the query and return all values for a field index from the - * generated result. - *

    - * You can access data like this - *

    query.fetchArray(fieldIndex)[recordIndex]
    - * - * @return The resulting values. - */ - T[] fetchArray(int fieldIndex, Class type) throws SQLException; + T[] fetchArray(int fieldIndex, Class type) throws DataAccessException; /** * Execute the query and return all values for a field name from the @@ -376,8 +387,9 @@ public interface ResultQuery extends Query { *
    query.fetchArray(fieldName)[recordIndex]
    * * @return The resulting values. + * @throws DataAccessException if something went wrong executing the query */ - Object[] fetchArray(String fieldName) throws SQLException; + Object[] fetchArray(String fieldName) throws DataAccessException; /** * Execute the query and return all values for a field name from the @@ -387,8 +399,9 @@ public interface ResultQuery extends Query { *
    query.fetchArray(fieldName)[recordIndex]
    * * @return The resulting values. + * @throws DataAccessException if something went wrong executing the query */ - T[] fetchArray(String fieldName, Class type) throws SQLException; + T[] fetchArray(String fieldName, Class type) throws DataAccessException; /** * Execute the query and return all values for a field from the generated @@ -398,8 +411,9 @@ public interface ResultQuery extends Query { *
    query.fetchArray(field)[recordIndex]
    * * @return The resulting values. + * @throws DataAccessException if something went wrong executing the query */ - T[] fetchArray(Field field) throws SQLException; + T[] fetchArray(Field field) throws DataAccessException; /** * Execute the query and return at most one resulting record as an array @@ -409,13 +423,13 @@ public interface ResultQuery extends Query { * * @return The resulting record or null if the query returns no * records. - * @throws SQLException This exception is thrown + * @throws DataAccessException This exception is thrown *
      *
    • if something went wrong executing the query
    • if * the query returned more than one record
    • *
    */ - Object[] fetchOneArray() throws SQLException; + Object[] fetchOneArray() throws DataAccessException; /** * Map resulting records onto a custom type. @@ -427,16 +441,18 @@ public interface ResultQuery extends Query { * @param type The entity type. * @see Record#into(Class) * @see Result#into(Class) + * @throws DataAccessException if something went wrong executing the query */ - List fetchInto(Class type) throws SQLException; + List fetchInto(Class type) throws DataAccessException; /** * Fetch results into a custom handler callback * * @param handler The handler callback * @return Convenience result, returning the parameter handler itself + * @throws DataAccessException if something went wrong executing the query */ - > H fetchInto(H handler) throws SQLException; + > H fetchInto(H handler) throws DataAccessException; /** * Fetch results asynchronously. @@ -459,8 +475,9 @@ public interface ResultQuery extends Query { * your executing threads. * * @return A future result + * @throws DataAccessException if something went wrong executing the query */ - FutureResult fetchLater() throws SQLException; + FutureResult fetchLater() throws DataAccessException; /** * Fetch results asynchronously. @@ -483,8 +500,9 @@ public interface ResultQuery extends Query { * * @param executor A custom executor * @return A future result + * @throws DataAccessException if something went wrong executing the query */ - FutureResult fetchLater(ExecutorService executor) throws SQLException; + FutureResult fetchLater(ExecutorService executor) throws DataAccessException; /** * The record type produced by this query diff --git a/jOOQ/src/main/java/org/jooq/Routine.java b/jOOQ/src/main/java/org/jooq/Routine.java index a371ec2a94..22326fab7c 100644 --- a/jOOQ/src/main/java/org/jooq/Routine.java +++ b/jOOQ/src/main/java/org/jooq/Routine.java @@ -35,10 +35,9 @@ */ package org.jooq; -import java.sql.SQLException; import java.util.List; -import org.jooq.exception.DetachedException; +import org.jooq.exception.DataAccessException; /** * A routine is a callable object in your RDBMS. @@ -78,7 +77,7 @@ import org.jooq.exception.DetachedException; * Hence, with #852, jOOQ 1.6.8, the distinction between procedures and * functions becomes obsolete. All stored routines are simply referred to as * "Routine". - * + * * @author Lukas Eder */ public interface Routine extends NamedQueryPart, SchemaProvider { @@ -125,15 +124,15 @@ public interface Routine extends NamedQueryPart, SchemaProvider { /** * Execute the stored object using a {@link Configuration} object + * + * @throws DataAccessException if something went wrong executing the query */ - int execute(Configuration configuration) throws SQLException; + int execute(Configuration configuration) throws DataAccessException; /** * Execute the stored object on an underlying connection * - * @throws SQLException If anything went wrong with executing the stored - * object - * @throws DetachedException If this stored object is not attached + * @throws DataAccessException if something went wrong executing the query */ - int execute() throws SQLException, DetachedException; + int execute() throws DataAccessException; } diff --git a/jOOQ/src/main/java/org/jooq/Schema.java b/jOOQ/src/main/java/org/jooq/Schema.java index 98fef8ae07..3cf2a1fb92 100644 --- a/jOOQ/src/main/java/org/jooq/Schema.java +++ b/jOOQ/src/main/java/org/jooq/Schema.java @@ -37,7 +37,6 @@ package org.jooq; import java.sql.ResultSet; -import java.sql.SQLException; import java.util.List; import java.util.Map; @@ -57,7 +56,7 @@ public interface Schema extends NamedQueryPart { * * @see UDT#getTypeMapping() for a UDT-specific type mapping */ - Map> getTypeMapping() throws SQLException; + Map> getTypeMapping(); /** * List all tables contained in this schema diff --git a/jOOQ/src/main/java/org/jooq/SchemaMapping.java b/jOOQ/src/main/java/org/jooq/SchemaMapping.java index 4031cb2342..5e540d02bc 100644 --- a/jOOQ/src/main/java/org/jooq/SchemaMapping.java +++ b/jOOQ/src/main/java/org/jooq/SchemaMapping.java @@ -225,6 +225,18 @@ public class SchemaMapping implements Serializable { return generatedTable; } + public void setDefaultSchema(String schema) { + use(schema); + } + + public void setSchemaMapping(Map schemaMap) { + for (String generatedSchemaName : schemaMap.keySet()) { + String configuredSchemaName = schemaMap.get(generatedSchemaName); + add(new SchemaImpl(generatedSchemaName), + new SchemaImpl(configuredSchemaName)); + } + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); diff --git a/jOOQ/src/main/java/org/jooq/StoredObject.java b/jOOQ/src/main/java/org/jooq/StoredObject.java deleted file mode 100644 index 1555bb497f..0000000000 --- a/jOOQ/src/main/java/org/jooq/StoredObject.java +++ /dev/null @@ -1,91 +0,0 @@ -/** - * Copyright (c) 2009-2011, Lukas Eder, lukas.eder@gmail.com - * All rights reserved. - * - * This software is licensed to you under the Apache License, Version 2.0 - * (the "License"); You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * . Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * - * . Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * . Neither the name "jOOQ" nor the names of its contributors may be - * used to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -package org.jooq; - -import java.sql.SQLException; -import java.util.List; - -import org.jooq.exception.DetachedException; - -/** - * A common interface for stored procedures and stored functions. These objects - * behave like queries, i.e. they can be executed on a connection. The concrete - * behaviour is specific to the concrete interface - * - * @author Lukas Eder - * @deprecated - 1.6.8 [#852] - The stored procedure / stored function - * distinction has been reviewed in jOOQ. The 12 currently supported - * RDBMS have such a distinct idea of what is a procedure and what - * is a function that it makes no longer sense to distinguish them - * generally, in jOOQ. See https://sourceforge.net/apps/trac/jooq/ticket/852 for more - * details. - */ -@Deprecated -public interface StoredObject extends NamedQueryPart, SchemaProvider { - - /** - * @return A list of parameters passed to the stored object as argument - */ - List> getParameters(); - - /** - * The container package of this stored procedure or function. - *

    - * This is only supported in the {@link SQLDialect#ORACLE} dialect. - * - * @return The container package of this object, or null if - * there is no such container. - */ - Package getPackage(); - - /** - * Execute the stored object using a {@link Configuration} object - */ - int execute(Configuration configuration) throws SQLException; - - /** - * Execute the stored object on an underlying connection - * - * @throws SQLException If anything went wrong with executing the stored - * object - * @throws DetachedException If this stored object is not attached - */ - int execute() throws SQLException, DetachedException; - -} diff --git a/jOOQ/src/main/java/org/jooq/StoredProcedure.java b/jOOQ/src/main/java/org/jooq/StoredProcedure.java deleted file mode 100644 index acd7bf2f91..0000000000 --- a/jOOQ/src/main/java/org/jooq/StoredProcedure.java +++ /dev/null @@ -1,76 +0,0 @@ -/** - * Copyright (c) 2009-2011, Lukas Eder, lukas.eder@gmail.com - * All rights reserved. - * - * This software is licensed to you under the Apache License, Version 2.0 - * (the "License"); You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * . Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * - * . Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * . Neither the name "jOOQ" nor the names of its contributors may be - * used to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -package org.jooq; - -import java.util.List; - -/** - * A stored procedure - * - * @author Lukas Eder - * @deprecated - 1.6.8 [#852] - The stored procedure / stored function - * distinction has been reviewed in jOOQ. The 12 currently supported - * RDBMS have such a distinct idea of what is a procedure and what - * is a function that it makes no longer sense to distinguish them - * generally, in jOOQ. See https://sourceforge.net/apps/trac/jooq/ticket/852 for more - * details. - */ -@Deprecated -public interface StoredProcedure extends StoredObject { - - /** - * A list of OUT parameters passed to the stored procedure as argument. This - * list contains all parameters that are either OUT or INOUT in their - * respective order of appearance in {@link #getParameters()}. - * - * @return The list of out parameters - * @see #getParameters() - */ - List> getOutParameters(); - - /** - * A list of IN parameters passed to the stored procedure as argument. This - * list contains all parameters that are either IN or INOUT in their - * respective order of appearance in {@link #getParameters()}. - * - * @return The list of in parameters - * @see #getParameters() - */ - List> getInParameters(); -} diff --git a/jOOQ/src/main/java/org/jooq/TableRecord.java b/jOOQ/src/main/java/org/jooq/TableRecord.java index 155f7fac5e..6f9abf6225 100644 --- a/jOOQ/src/main/java/org/jooq/TableRecord.java +++ b/jOOQ/src/main/java/org/jooq/TableRecord.java @@ -35,11 +35,11 @@ */ package org.jooq; -import java.sql.SQLException; +import org.jooq.exception.DataAccessException; /** * A record originating from a single table - * + * * @param The record type * @author Lukas Eder */ @@ -87,16 +87,16 @@ public interface TableRecord extends Record { * SET [modified fields = modified values, excluding keys] * WHERE [key fields = key values] * - * + * * @param keys The key fields used for deciding whether to execute an * INSERT or UPDATE statement. If an * UPDATE statement is executed, they are also the * key fields for the UPDATE statement's * WHERE clause. * @return The number of stored records. - * @throws SQLException + * @throws DataAccessException if something went wrong executing the query */ - int storeUsing(TableField... keys) throws SQLException; + int storeUsing(TableField... keys) throws DataAccessException; /** * Deletes this record from the database, based on the value of the provided @@ -105,13 +105,13 @@ public interface TableRecord extends Record { * The executed statement is

          * DELETE FROM [table]
          * WHERE [key fields = key values]
    - * + * * @param keys The key fields for the DELETE statement's * WHERE clause. * @return The number of deleted records. - * @throws SQLException + * @throws DataAccessException if something went wrong executing the query */ - int deleteUsing(TableField... keys) throws SQLException; + int deleteUsing(TableField... keys) throws DataAccessException; /** * Refresh this record from the database, based on the value of the provided @@ -120,12 +120,15 @@ public interface TableRecord extends Record { * The executed statement is
          * SELECT * FROM [table]
          * WHERE [key fields = key values]
    - * + * * @param keys The key fields for the SELECT statement's * WHERE clause. - * @throws SQLException - If there is an underlying {@link SQLException} or - * if the record does not exist anymore in the database, or if - * the provided keys return several records. + * @throws DataAccessException This exception is thrown if + *
      + *
    • something went wrong executing the query
    • the + * record does not exist anymore in the database
    • the + * provided keys return several records.
    • + *
    */ - void refreshUsing(TableField... keys) throws SQLException; + void refreshUsing(TableField... keys) throws DataAccessException; } diff --git a/jOOQ/src/main/java/org/jooq/UpdatableRecord.java b/jOOQ/src/main/java/org/jooq/UpdatableRecord.java index e9f7c8c318..617e354de7 100644 --- a/jOOQ/src/main/java/org/jooq/UpdatableRecord.java +++ b/jOOQ/src/main/java/org/jooq/UpdatableRecord.java @@ -35,7 +35,7 @@ */ package org.jooq; -import java.sql.SQLException; +import org.jooq.exception.DataAccessException; /** * A common interface for records that can be stored back to the database again. @@ -99,8 +99,7 @@ public interface UpdatableRecord extends Updatable, TableRe * been explicitly set by client code, in order to allow for * DEFAULT values to be applied by the underlying RDBMS. If no * fields were modified, neither an UPDATE nor an - * INSERT will be executed. - * Possible statements are + * INSERT will be executed. Possible statements are *
      *
    • *
      @@ -118,17 +117,16 @@ public interface UpdatableRecord extends Updatable, TableRe
            *
            * @return 1 if the record was stored to the database. 0
            *          if storing was not necessary.
      -     * @throws SQLException
      +     * @throws DataAccessException if something went wrong executing the query
            * @see #storeUsing(TableField...)
            */
      -    int store() throws SQLException;
      +    int store() throws DataAccessException;
       
           /**
            * Deletes this record from the database, based on the value of the primary
            * key or main unique key.
            * 

      - * The executed statement is - *

      +     * The executed statement is 
            * DELETE FROM [table]
            * WHERE [main key fields = main key values]
      *

      @@ -137,10 +135,10 @@ public interface UpdatableRecord extends Updatable, TableRe * * @return 1 if the record was deleted from the database. * 0 if deletion was not necessary. - * @throws SQLException + * @throws DataAccessException if something went wrong executing the query * @see #deleteUsing(TableField...) */ - int delete() throws SQLException; + int delete() throws DataAccessException; /** * Refresh this record from the database, based on the value of the primary @@ -149,16 +147,18 @@ public interface UpdatableRecord extends Updatable, TableRe * This is in fact the same as calling * refresh(getTable().getMainKey().getFieldsArray()) *

      - * The executed statement is - *

      +     * The executed statement is 
            * SELECT * FROM [table]
            * WHERE [main key fields = main key values]
      * - * @throws SQLException - If there is an underlying {@link SQLException} or - * if the record does not exist anymore in the database. + * @throws DataAccessException This exception is thrown if + *
        + *
      • something went wrong executing the query
      • the + * record does not exist anymore in the database
      • + *
      * @see #refreshUsing(TableField...) */ - void refresh() throws SQLException; + void refresh() throws DataAccessException; /** * Duplicate this record (in memory) and reset all fields from the primary diff --git a/jOOQ/src/main/java/org/jooq/StoredFunction.java b/jOOQ/src/main/java/org/jooq/exception/DataAccessException.java similarity index 62% rename from jOOQ/src/main/java/org/jooq/StoredFunction.java rename to jOOQ/src/main/java/org/jooq/exception/DataAccessException.java index 0e05662b24..d31e0e3879 100644 --- a/jOOQ/src/main/java/org/jooq/StoredFunction.java +++ b/jOOQ/src/main/java/org/jooq/exception/DataAccessException.java @@ -1,60 +1,74 @@ -/** - * Copyright (c) 2009-2011, Lukas Eder, lukas.eder@gmail.com - * All rights reserved. - * - * This software is licensed to you under the Apache License, Version 2.0 - * (the "License"); You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * . Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * - * . Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * . Neither the name "jOOQ" nor the names of its contributors may be - * used to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -package org.jooq; - -/** - * A stored function - * - * @param The return type - * @author Lukas Eder - * @deprecated - 1.6.8 [#852] - The stored procedure / stored function - * distinction has been reviewed in jOOQ. The 12 currently supported - * RDBMS have such a distinct idea of what is a procedure and what - * is a function that it makes no longer sense to distinguish them - * generally, in jOOQ. See https://sourceforge.net/apps/trac/jooq/ticket/852 for more - * details. - */ -@Deprecated -public interface StoredFunction extends StoredObject, FieldLike { - - /** - * @return The function's return value - */ - T getReturnValue(); -} +/** + * Copyright (c) 2009-2011, Lukas Eder, lukas.eder@gmail.com + * All rights reserved. + * + * This software is licensed to you under the Apache License, Version 2.0 + * (the "License"); You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * . Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * . Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * . Neither the name "jOOQ" nor the names of its contributors may be + * used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +package org.jooq.exception; + + +/** + * The DataAccessException is a generic {@link RuntimeException} + * indicating that something went wrong while executing a SQL statement from + * jOOQ. The idea behind this unchecked exception is borrowed from Spring's + * JDBC's DataAccessException + * + * @author Sergey Epik - Merged into jOOQ from Spring JDBC Support + * @author Lukas Eder + */ +public class DataAccessException extends RuntimeException { + + /** + * Generated UID + */ + private static final long serialVersionUID = 491834858363345767L; + + /** + * Constructor for DataAccessException. + * + * @param message the detail message + */ + public DataAccessException(String message) { + super(message); + } + + /** + * Constructor for DataAccessException. + * + * @param message the detail message + * @param cause the root cause (usually from using a underlying data access + * API such as JDBC) + */ + public DataAccessException(String message, Throwable cause) { + super(message, cause); + } +} diff --git a/jOOQ/src/main/java/org/jooq/exception/DetachedException.java b/jOOQ/src/main/java/org/jooq/exception/DetachedException.java index c850c39c2a..04a3117b79 100644 --- a/jOOQ/src/main/java/org/jooq/exception/DetachedException.java +++ b/jOOQ/src/main/java/org/jooq/exception/DetachedException.java @@ -35,8 +35,6 @@ */ package org.jooq.exception; -import java.sql.SQLException; - import org.jooq.Query; import org.jooq.QueryPart; import org.jooq.UpdatableRecord; @@ -47,26 +45,18 @@ import org.jooq.UpdatableRecord; * * @author Lukas Eder */ -public class DetachedException extends SQLException { +public class DetachedException extends DataAccessException { /** * Generated UID */ private static final long serialVersionUID = -6460945824599280420L; - public DetachedException() { - super(); + public DetachedException(String message) { + super(message); } - public DetachedException(String reason, Throwable cause) { - super(reason, cause); - } - - public DetachedException(String reason) { - super(reason); - } - - public DetachedException(Throwable cause) { - super(cause); + public DetachedException(String message, Throwable cause) { + super(message, cause); } } diff --git a/jOOQ/src/main/java/org/jooq/impl/AbstractDelegatingQueryPart.java b/jOOQ/src/main/java/org/jooq/impl/AbstractDelegatingQueryPart.java index 37c9289025..23bcd7a690 100644 --- a/jOOQ/src/main/java/org/jooq/impl/AbstractDelegatingQueryPart.java +++ b/jOOQ/src/main/java/org/jooq/impl/AbstractDelegatingQueryPart.java @@ -35,7 +35,6 @@ */ package org.jooq.impl; -import java.sql.SQLException; import java.util.List; import org.jooq.Attachable; @@ -66,7 +65,7 @@ abstract class AbstractDelegatingQueryPart extends Abstract } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(delegate); } diff --git a/jOOQ/src/main/java/org/jooq/impl/AbstractDelegatingSelect.java b/jOOQ/src/main/java/org/jooq/impl/AbstractDelegatingSelect.java index 9f256090a3..3682c344af 100644 --- a/jOOQ/src/main/java/org/jooq/impl/AbstractDelegatingSelect.java +++ b/jOOQ/src/main/java/org/jooq/impl/AbstractDelegatingSelect.java @@ -35,7 +35,6 @@ */ package org.jooq.impl; -import java.sql.SQLException; import java.util.List; import java.util.Map; import java.util.concurrent.ExecutorService; @@ -81,157 +80,157 @@ abstract class AbstractDelegatingSelect } @Override - public final Result fetch() throws SQLException { + public final Result fetch() { return getDelegate().fetch(); } @Override - public final Cursor fetchLazy() throws SQLException { + public final Cursor fetchLazy() { return getDelegate().fetchLazy(); } @Override - public final List> fetchMany() throws SQLException { + public final List> fetchMany() { return getDelegate().fetchMany(); } @Override - public final List fetch(Field field) throws SQLException { + public final List fetch(Field field) { return getDelegate().fetch(field); } @Override - public final List fetch(int fieldIndex) throws SQLException { + public final List fetch(int fieldIndex) { return getDelegate().fetch(fieldIndex); } @Override - public final List fetch(int fieldIndex, Class type) throws SQLException { + public final List fetch(int fieldIndex, Class type) { return getDelegate().fetch(fieldIndex, type); } @Override - public final List fetch(String fieldName) throws SQLException { + public final List fetch(String fieldName) { return getDelegate().fetch(fieldName); } @Override - public final List fetch(String fieldName, Class type) throws SQLException { + public final List fetch(String fieldName, Class type) { return getDelegate().fetch(fieldName, type); } @Override - public final T fetchOne(Field field) throws SQLException { + public final T fetchOne(Field field) { return getDelegate().fetchOne(field); } @Override - public final Object fetchOne(int fieldIndex) throws SQLException { + public final Object fetchOne(int fieldIndex) { return getDelegate().fetchOne(fieldIndex); } @Override - public final T fetchOne(int fieldIndex, Class type) throws SQLException { + public final T fetchOne(int fieldIndex, Class type) { return getDelegate().fetchOne(fieldIndex, type); } @Override - public final Object fetchOne(String fieldName) throws SQLException { + public final Object fetchOne(String fieldName) { return getDelegate().fetchOne(fieldName); } @Override - public final T fetchOne(String fieldName, Class type) throws SQLException { + public final T fetchOne(String fieldName, Class type) { return getDelegate().fetchOne(fieldName, type); } @Override - public final R fetchOne() throws SQLException { + public final R fetchOne() { return getDelegate().fetchOne(); } @Override - public final R fetchAny() throws SQLException { + public final R fetchAny() { return getDelegate().fetchAny(); } @Override - public final Map fetchMap(Field key) throws SQLException { + public final Map fetchMap(Field key) { return getDelegate().fetchMap(key); } @Override - public final Map fetchMap(Field key, Field value) throws SQLException { + public final Map fetchMap(Field key, Field value) { return getDelegate().fetchMap(key, value); } @Override - public final List> fetchMaps() throws SQLException { + public final List> fetchMaps() { return getDelegate().fetchMaps(); } @Override - public final Map fetchOneMap() throws SQLException { + public final Map fetchOneMap() { return getDelegate().fetchOneMap(); } @Override - public final Object[][] fetchArrays() throws SQLException { + public final Object[][] fetchArrays() { return getDelegate().fetchArrays(); } @Override - public final Object[] fetchArray(int fieldIndex) throws SQLException { + public final Object[] fetchArray(int fieldIndex) { return getDelegate().fetchArray(fieldIndex); } @Override - public final T[] fetchArray(int fieldIndex, Class type) throws SQLException { + public final T[] fetchArray(int fieldIndex, Class type) { return getDelegate().fetchArray(fieldIndex, type); } @Override - public final Object[] fetchArray(String fieldName) throws SQLException { + public final Object[] fetchArray(String fieldName) { return getDelegate().fetchArray(fieldName); } @Override - public final T[] fetchArray(String fieldName, Class type) throws SQLException { + public final T[] fetchArray(String fieldName, Class type) { return getDelegate().fetchArray(fieldName, type); } @Override - public final T[] fetchArray(Field field) throws SQLException { + public final T[] fetchArray(Field field) { return getDelegate().fetchArray(field); } @Override - public final Object[] fetchOneArray() throws SQLException { + public final Object[] fetchOneArray() { return getDelegate().fetchOneArray(); } @Override - public final List fetchInto(Class type) throws SQLException { + public final List fetchInto(Class type) { return getDelegate().fetchInto(type); } @Override - public final > H fetchInto(H handler) throws SQLException { + public final > H fetchInto(H handler) { return getDelegate().fetchInto(handler); } @Override - public final FutureResult fetchLater() throws SQLException { + public final FutureResult fetchLater() { return getDelegate().fetchLater(); } @Override - public final FutureResult fetchLater(ExecutorService executor) throws SQLException { + public final FutureResult fetchLater(ExecutorService executor) { return getDelegate().fetchLater(executor); } @Override - public final int execute() throws SQLException { + public final int execute() { return getDelegate().execute(); } diff --git a/jOOQ/src/main/java/org/jooq/impl/AbstractField.java b/jOOQ/src/main/java/org/jooq/impl/AbstractField.java index bae8cc8d0f..c9b55dd4a9 100644 --- a/jOOQ/src/main/java/org/jooq/impl/AbstractField.java +++ b/jOOQ/src/main/java/org/jooq/impl/AbstractField.java @@ -47,7 +47,6 @@ import static org.jooq.impl.Factory.val; import static org.jooq.impl.Factory.vals; import java.math.BigDecimal; -import java.sql.SQLException; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; @@ -90,7 +89,7 @@ abstract class AbstractField extends AbstractNamedTypeProviderQueryPart im public abstract void toSQL(RenderContext context); @Override - public abstract void bind(BindContext context) throws SQLException; + public abstract void bind(BindContext context); @Override public abstract boolean isNullLiteral(); @@ -1025,24 +1024,6 @@ abstract class AbstractField extends AbstractNamedTypeProviderQueryPart im return new SelectQueryAsSubQueryCondition(query, this, SubQueryOperator.LESS_OR_EQUAL_ALL); } - @Override - @Deprecated - public final Condition lessOrEqualToAny(Select query) { - return lessOrEqualAny(query); - } - - @Override - @Deprecated - public final Condition lessOrEqualToSome(Select query) { - return lessOrEqualSome(query); - } - - @Override - @Deprecated - public final Condition lessOrEqualToAll(Select query) { - return lessOrEqualAll(query); - } - @Override public final Condition greaterThan(T value) { return greaterThan(val(value)); diff --git a/jOOQ/src/main/java/org/jooq/impl/AbstractFunction.java b/jOOQ/src/main/java/org/jooq/impl/AbstractFunction.java index 8ff15cd468..c8a1050434 100644 --- a/jOOQ/src/main/java/org/jooq/impl/AbstractFunction.java +++ b/jOOQ/src/main/java/org/jooq/impl/AbstractFunction.java @@ -35,7 +35,6 @@ */ package org.jooq.impl; -import java.sql.SQLException; import java.util.List; import org.jooq.Attachable; @@ -76,7 +75,7 @@ abstract class AbstractFunction extends AbstractField { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(getFunction(context)); } diff --git a/jOOQ/src/main/java/org/jooq/impl/AbstractNamedTypeProviderQueryPart.java b/jOOQ/src/main/java/org/jooq/impl/AbstractNamedTypeProviderQueryPart.java index 829cdbee56..652719bac9 100644 --- a/jOOQ/src/main/java/org/jooq/impl/AbstractNamedTypeProviderQueryPart.java +++ b/jOOQ/src/main/java/org/jooq/impl/AbstractNamedTypeProviderQueryPart.java @@ -73,16 +73,4 @@ abstract class AbstractNamedTypeProviderQueryPart extends AbstractNamedQueryP public final Class getType() { return type.getType(); } - - @Override - @Deprecated - public final String getTypeName() { - return type.getTypeName(); - } - - @Override - @Deprecated - public final String getCastTypeName() { - return type.getCastTypeName(); - } } \ No newline at end of file diff --git a/jOOQ/src/main/java/org/jooq/impl/AbstractQuery.java b/jOOQ/src/main/java/org/jooq/impl/AbstractQuery.java index 06c869c958..fbd2b71693 100644 --- a/jOOQ/src/main/java/org/jooq/impl/AbstractQuery.java +++ b/jOOQ/src/main/java/org/jooq/impl/AbstractQuery.java @@ -58,7 +58,7 @@ abstract class AbstractQuery extends AbstractQueryPart implements Query { } @Override - public final int execute() throws SQLException, DetachedException { + public final int execute() { if (isExecutable()) { StopWatch watch = new StopWatch(); @@ -78,9 +78,10 @@ abstract class AbstractQuery extends AbstractQueryPart implements Query { watch.splitTrace("Parts attached"); PreparedStatement statement = null; + String sql = null; int result = 0; try { - String sql = create(configuration).render(this); + sql = create(configuration).render(this); watch.splitTrace("SQL rendered"); if (log.isDebugEnabled()) @@ -99,6 +100,9 @@ abstract class AbstractQuery extends AbstractQueryPart implements Query { return result; } + catch (SQLException e) { + throw JooqUtil.translate("AbstractQuery.execute", sql, e); + } finally { if (!keepStatementOpen()) { JooqUtil.safeClose(statement); diff --git a/jOOQ/src/main/java/org/jooq/impl/AbstractQueryPart.java b/jOOQ/src/main/java/org/jooq/impl/AbstractQueryPart.java index 8d02f8d383..587bc2e12b 100644 --- a/jOOQ/src/main/java/org/jooq/impl/AbstractQueryPart.java +++ b/jOOQ/src/main/java/org/jooq/impl/AbstractQueryPart.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.PreparedStatement; import java.sql.SQLException; import java.util.ArrayList; import java.util.Arrays; @@ -46,16 +45,16 @@ import java.util.List; import org.jooq.Attachable; import org.jooq.AttachableInternal; -import org.jooq.BindContext; import org.jooq.Configuration; +import org.jooq.Query; import org.jooq.QueryPart; import org.jooq.QueryPartInternal; -import org.jooq.RenderContext; import org.jooq.SQLDialect; import org.jooq.SQLDialectNotSupportedException; import org.jooq.Schema; import org.jooq.Store; import org.jooq.Table; +import org.jooq.exception.DataAccessException; /** * @author Lukas Eder @@ -106,99 +105,20 @@ abstract class AbstractQueryPart implements QueryPartInternal, AttachableInterna return getConfiguration().getDialect(); } - - @Override + /** + * This method is also declared as {@link Query#getSQL()} + */ public final String getSQL() { - return toSQLReference(getConfiguration()); + return create().render(this); } @Override public final List getBindValues() { BindValueCollector collector = new BindValueCollector(); - - try { - create(getConfiguration()).bind(this, collector); - } - catch (SQLException ignore) { - } - + create(getConfiguration()).bind(this, collector); return collector.result; } - @Override - @Deprecated - public final String toSQLReference(Configuration configuration) { - return toSQLReference(configuration, false); - } - - @Override - @Deprecated - public final String toSQLReference(Configuration configuration, boolean inlineParameters) { - RenderContext context = new DefaultRenderContext(configuration); - context.inline(inlineParameters); - toSQL(context); - return context.render(); - } - - @Override - @Deprecated - public final String toSQLDeclaration(Configuration configuration) { - return toSQLDeclaration(configuration, false); - } - - @Override - @Deprecated - public final String toSQLDeclaration(Configuration configuration, boolean inlineParameters) { - RenderContext context = new DefaultRenderContext(configuration); - context.inline(inlineParameters); - context.declareFields(true); - context.declareTables(true); - toSQL(context); - return context.render(); - } - - @Override - @Deprecated - public final int bind(Configuration configuration, PreparedStatement stmt) throws SQLException { - return bind(configuration, stmt, 1); - } - - @Override - @Deprecated - public final int bind(Configuration configuration, PreparedStatement stmt, int initialIndex) throws SQLException { - return bindReference(configuration, stmt, 1); - } - - @Override - @Deprecated - public final int bindReference(Configuration configuration, PreparedStatement stmt) throws SQLException { - return bindReference(configuration, stmt, 1); - } - - @Override - @Deprecated - public final int bindReference(Configuration configuration, PreparedStatement stmt, int initialIndex) throws SQLException { - BindContext context = new DefaultBindContext(configuration, stmt); - bind(context); - return context.peekIndex(); - } - - @Override - @Deprecated - public final int bindDeclaration(Configuration configuration, PreparedStatement stmt) throws SQLException { - return bindDeclaration(configuration, stmt, 1); - } - - @Override - @Deprecated - public final int bindDeclaration(Configuration configuration, PreparedStatement stmt, int initialIndex) throws SQLException { - BindContext context = new DefaultBindContext(configuration, stmt); - context.declareFields(true); - context.declareTables(true); - bind(context); - return context.peekIndex(); - } - /** * Subclasses may override this */ @@ -351,4 +271,11 @@ abstract class AbstractQueryPart implements QueryPartInternal, AttachableInterna final Factory create(AttachableImpl a) { return create(a.getConfiguration()); } + + /** + * Internal convenience method + */ + protected final DataAccessException translate(String task, String sql, SQLException e) { + return JooqUtil.translate(task, sql, e); + } } diff --git a/jOOQ/src/main/java/org/jooq/impl/AbstractQueryPartMap.java b/jOOQ/src/main/java/org/jooq/impl/AbstractQueryPartMap.java index dfbc91c3a3..572a941347 100644 --- a/jOOQ/src/main/java/org/jooq/impl/AbstractQueryPartMap.java +++ b/jOOQ/src/main/java/org/jooq/impl/AbstractQueryPartMap.java @@ -35,7 +35,6 @@ */ package org.jooq.impl; -import java.sql.SQLException; import java.util.ArrayList; import java.util.Collection; import java.util.LinkedHashMap; @@ -74,7 +73,7 @@ implements Map { public abstract void toSQL(RenderContext context); @Override - public abstract void bind(BindContext context) throws SQLException; + public abstract void bind(BindContext context); @Override public final List getAttachables() { diff --git a/jOOQ/src/main/java/org/jooq/impl/AbstractRecord.java b/jOOQ/src/main/java/org/jooq/impl/AbstractRecord.java index 154bc2df7a..35452192be 100644 --- a/jOOQ/src/main/java/org/jooq/impl/AbstractRecord.java +++ b/jOOQ/src/main/java/org/jooq/impl/AbstractRecord.java @@ -49,11 +49,9 @@ import java.util.List; import org.jooq.ArrayRecord; import org.jooq.Attachable; -import org.jooq.Configuration; import org.jooq.Field; import org.jooq.FieldProvider; import org.jooq.Record; -import org.jooq.Table; /** * @author Lukas Eder @@ -69,18 +67,6 @@ abstract class AbstractRecord extends AbstractStore implements Record { private Value[] values; AbstractRecord(FieldProvider fields) { - this(fields, null); - } - - /** - * @deprecated - 1.6.4 [#789] - Create attached records using - * {@link Factory#newRecord(Table)} instead. Detached records - * can be created using {@link #TableRecordImpl(Table)} - */ - @Deprecated - AbstractRecord(FieldProvider fields, Configuration configuration) { - super(configuration); - this.fields = fields; } diff --git a/jOOQ/src/main/java/org/jooq/impl/AbstractResultQuery.java b/jOOQ/src/main/java/org/jooq/impl/AbstractResultQuery.java index d056ece310..392c059a17 100644 --- a/jOOQ/src/main/java/org/jooq/impl/AbstractResultQuery.java +++ b/jOOQ/src/main/java/org/jooq/impl/AbstractResultQuery.java @@ -62,6 +62,7 @@ import org.jooq.RecordHandler; import org.jooq.Result; import org.jooq.ResultQuery; import org.jooq.SQLDialect; +import org.jooq.exception.DataAccessException; /** * A query that returns a {@link Result} @@ -160,13 +161,13 @@ abstract class AbstractResultQuery extends AbstractQuery imple abstract boolean isSelectingRefCursor(); @Override - public final Result fetch() throws SQLException { + public final Result fetch() { execute(); return result; } @Override - public final Cursor fetchLazy() throws SQLException { + public final Cursor fetchLazy() { lazy = true; execute(); lazy = false; @@ -175,7 +176,7 @@ abstract class AbstractResultQuery extends AbstractQuery imple } @Override - public final List> fetchMany() throws SQLException { + public final List> fetchMany() { many = true; execute(); many = false; @@ -184,74 +185,74 @@ abstract class AbstractResultQuery extends AbstractQuery imple } @Override - public final List fetch(Field field) throws SQLException { + public final List fetch(Field field) { return fetch().getValues(field); } @Override - public final List fetch(int fieldIndex) throws SQLException { + public final List fetch(int fieldIndex) { return fetch().getValues(fieldIndex); } @Override - public final List fetch(int fieldIndex, Class type) throws SQLException { + public final List fetch(int fieldIndex, Class type) { return fetch().getValues(fieldIndex, type); } @Override - public final List fetch(String fieldName) throws SQLException { + public final List fetch(String fieldName) { return fetch().getValues(fieldName); } @Override - public final List fetch(String fieldName, Class type) throws SQLException { + public final List fetch(String fieldName, Class type) { return fetch().getValues(fieldName, type); } @Override - public final T fetchOne(Field field) throws SQLException { + public final T fetchOne(Field field) { R record = fetchOne(); return record == null ? null : record.getValue(field); } @Override - public final Object fetchOne(int fieldIndex) throws SQLException { + public final Object fetchOne(int fieldIndex) { R record = fetchOne(); return record == null ? null : record.getValue(fieldIndex); } @Override - public final T fetchOne(int fieldIndex, Class type) throws SQLException { + public final T fetchOne(int fieldIndex, Class type) { return TypeUtils.convert(fetchOne(fieldIndex), type); } @Override - public final Object fetchOne(String fieldName) throws SQLException { + public final Object fetchOne(String fieldName) { R record = fetchOne(); return record == null ? null : record.getValue(fieldName); } @Override - public final T fetchOne(String fieldName, Class type) throws SQLException { + public final T fetchOne(String fieldName, Class type) { return TypeUtils.convert(fetchOne(fieldName), type); } @Override - public final R fetchOne() throws SQLException { + public final R fetchOne() { Result r = fetch(); if (r.size() == 1) { return r.get(0); } else if (r.size() > 1) { - throw new SQLException("Query returned more than one result"); + throw new DataAccessException("Query returned more than one result"); } return null; } @Override - public final R fetchAny() throws SQLException { + public final R fetchAny() { Cursor c = fetchLazy(); try { @@ -263,12 +264,12 @@ abstract class AbstractResultQuery extends AbstractQuery imple } @Override - public final Map fetchMap(Field key) throws SQLException { + public final Map fetchMap(Field key) { Map map = new LinkedHashMap(); for (R record : fetch()) { if (map.put(record.getValue(key), record) != null) { - throw new SQLException("Key " + key + " is not unique in Result for " + this); + throw new DataAccessException("Key " + key + " is not unique in Result for " + this); } } @@ -276,7 +277,7 @@ abstract class AbstractResultQuery extends AbstractQuery imple } @Override - public final Map fetchMap(Field key, Field value) throws SQLException { + public final Map fetchMap(Field key, Field value) { Map map = new LinkedHashMap(); for (Map.Entry entry : fetchMap(key).entrySet()) { @@ -287,7 +288,7 @@ abstract class AbstractResultQuery extends AbstractQuery imple } @Override - public final List> fetchMaps() throws SQLException { + public final List> fetchMaps() { List> list = new ArrayList>(); for (R record : fetch()) { @@ -298,16 +299,16 @@ abstract class AbstractResultQuery extends AbstractQuery imple } @Override - public final Map fetchOneMap() throws SQLException { + public final Map fetchOneMap() { return convertToMap(fetchOne()); } - private final Map convertToMap(R record) throws SQLException { + private final Map convertToMap(R record) { Map map = new LinkedHashMap(); for (Field field : record.getFields()) { if (map.put(field.getName(), record.getValue(field)) != null) { - throw new SQLException("Field " + field.getName() + " is not unique in Record for " + this); + throw new DataAccessException("Field " + field.getName() + " is not unique in Record for " + this); } } @@ -315,7 +316,7 @@ abstract class AbstractResultQuery extends AbstractQuery imple } @Override - public final Object[][] fetchArrays() throws SQLException { + public final Object[][] fetchArrays() { Result fetch = fetch(); Object[][] array = new Object[fetch.size()][]; @@ -327,57 +328,57 @@ abstract class AbstractResultQuery extends AbstractQuery imple } @Override - public final Object[] fetchArray(int fieldIndex) throws SQLException { + public final Object[] fetchArray(int fieldIndex) { return fetch(fieldIndex).toArray(); } @SuppressWarnings("unchecked") @Override - public final T[] fetchArray(int fieldIndex, Class type) throws SQLException { + public final T[] fetchArray(int fieldIndex, Class type) { return (T[]) TypeUtils.convertArray(fetchArray(fieldIndex), type); } @Override - public final Object[] fetchArray(String fieldName) throws SQLException { + public final Object[] fetchArray(String fieldName) { return fetch(fieldName).toArray(); } @SuppressWarnings("unchecked") @Override - public final T[] fetchArray(String fieldName, Class type) throws SQLException { + public final T[] fetchArray(String fieldName, Class type) { return (T[]) TypeUtils.convertArray(fetchArray(fieldName), type); } @SuppressWarnings("unchecked") @Override - public final T[] fetchArray(Field field) throws SQLException { + public final T[] fetchArray(Field field) { return fetch(field).toArray((T[]) Array.newInstance(field.getType(), 0)); } @Override - public final Object[] fetchOneArray() throws SQLException { + public final Object[] fetchOneArray() { return convertToArray(fetchOne()); } @Override - public final List fetchInto(Class type) throws SQLException { + public final List fetchInto(Class type) { return fetch().into(type); } @Override - public final > H fetchInto(H handler) throws SQLException { + public final > H fetchInto(H handler) { return fetch().into(handler); } @Override - public final FutureResult fetchLater() throws SQLException { + public final FutureResult fetchLater() { ExecutorService executor = newSingleThreadExecutor(); Future> future = executor.submit(new ResultQueryCallable()); return new FutureResultImpl(future, executor); } @Override - public final FutureResult fetchLater(ExecutorService executor) throws SQLException { + public final FutureResult fetchLater(ExecutorService executor) { Future> future = executor.submit(new ResultQueryCallable()); return new FutureResultImpl(future); } diff --git a/jOOQ/src/main/java/org/jooq/impl/AbstractRoutine.java b/jOOQ/src/main/java/org/jooq/impl/AbstractRoutine.java index daac43814f..0119a38c4c 100644 --- a/jOOQ/src/main/java/org/jooq/impl/AbstractRoutine.java +++ b/jOOQ/src/main/java/org/jooq/impl/AbstractRoutine.java @@ -63,7 +63,6 @@ import org.jooq.Routine; import org.jooq.SQLDialect; import org.jooq.Schema; import org.jooq.UDTRecord; -import org.jooq.exception.DetachedException; /** * A common base class for stored procedures @@ -195,7 +194,7 @@ public abstract class AbstractRoutine extends AbstractSchemaProviderQueryPart } @Override - public final int execute(Configuration configuration) throws SQLException { + public final int execute(Configuration configuration) { // Ensure that all depending Attachables are attached attach(configuration); @@ -203,7 +202,7 @@ public abstract class AbstractRoutine extends AbstractSchemaProviderQueryPart } @Override - public final int execute() throws SQLException, DetachedException { + public final int execute() { // Procedures (no return value) are always executed as CallableStatement if (type == null) { return executeCallableStatement(); @@ -241,28 +240,29 @@ public abstract class AbstractRoutine extends AbstractSchemaProviderQueryPart } } - private final int executeSelectFrom() throws SQLException, DetachedException { + private final int executeSelectFrom() { Factory create = create(attachable); Result result = create.selectFrom(table(asField())).fetch(); results.put(returnParameter, result); return 0; } - private final int executeSelect() throws SQLException, DetachedException { + private final int executeSelect() { final Field field = asField(); results.put(returnParameter, create(attachable).select(field).fetchOne(field)); return 0; } - private final int executeCallableStatement() throws SQLException, DetachedException { + private final int executeCallableStatement() { StopWatch watch = new StopWatch(); + Configuration configuration = attachable.getConfiguration(); CallableStatement statement = null; + String sql = null; try { - Configuration configuration = attachable.getConfiguration(); Connection connection = configuration.getConnection(); - String sql = create(configuration).render(this); + sql = create(configuration).render(this); watch.splitTrace("SQL rendered"); if (log.isDebugEnabled()) @@ -299,6 +299,9 @@ public abstract class AbstractRoutine extends AbstractSchemaProviderQueryPart return 0; } + catch (SQLException exc) { + throw translate("AbstractRoutine.executeCallableStatement", sql, exc); + } finally { JooqUtil.safeClose(statement); watch.splitDebug("Routine executed"); @@ -306,7 +309,7 @@ public abstract class AbstractRoutine extends AbstractSchemaProviderQueryPart } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { for (Parameter parameter : getParameters()) { int index = context.peekIndex(); parameterIndexes.put(parameter, index); diff --git a/jOOQ/src/main/java/org/jooq/impl/AbstractSelect.java b/jOOQ/src/main/java/org/jooq/impl/AbstractSelect.java index a309724288..a4bd549fbb 100644 --- a/jOOQ/src/main/java/org/jooq/impl/AbstractSelect.java +++ b/jOOQ/src/main/java/org/jooq/impl/AbstractSelect.java @@ -36,7 +36,6 @@ package org.jooq.impl; import java.sql.ResultSetMetaData; -import java.sql.SQLException; import java.util.List; import org.jooq.Configuration; @@ -133,7 +132,7 @@ abstract class AbstractSelect extends AbstractResultQuery i } @Override - protected final List> getFields(ResultSetMetaData meta) throws SQLException { + protected final List> getFields(ResultSetMetaData meta) { List> select = getSelect(); // If no projection was specified explicitly, create fields from result diff --git a/jOOQ/src/main/java/org/jooq/impl/AbstractStoredObject.java b/jOOQ/src/main/java/org/jooq/impl/AbstractStoredObject.java deleted file mode 100644 index b80eb0522e..0000000000 --- a/jOOQ/src/main/java/org/jooq/impl/AbstractStoredObject.java +++ /dev/null @@ -1,185 +0,0 @@ -/** - * Copyright (c) 2009-2011, Lukas Eder, lukas.eder@gmail.com - * All rights reserved. - * - * This software is licensed to you under the Apache License, Version 2.0 - * (the "License"); You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * . Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * - * . Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * . Neither the name "jOOQ" nor the names of its contributors may be - * used to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -package org.jooq.impl; - -import static org.jooq.impl.Factory.val; - -import java.sql.SQLException; -import java.util.ArrayList; -import java.util.Collections; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -import org.jooq.Attachable; -import org.jooq.Configuration; -import org.jooq.Field; -import org.jooq.Package; -import org.jooq.Parameter; -import org.jooq.RenderContext; -import org.jooq.Schema; -import org.jooq.StoredObject; - -/** - * @author Lukas Eder - * @deprecated - 1.6.8 [#852] - The stored procedure / stored function - * distinction has been reviewed in jOOQ. The 12 currently supported - * RDBMS have such a distinct idea of what is a procedure and what - * is a function that it makes no longer sense to distinguish them - * generally, in jOOQ. See https://sourceforge.net/apps/trac/jooq/ticket/852 for more - * details. - */ -@Deprecated -abstract class AbstractStoredObject extends AbstractSchemaProviderQueryPart implements StoredObject { - - private static final long serialVersionUID = 5478305057107861491L; - - private final Package pkg; - private final List> inParameters; - private final Map, Field> inValues; - private boolean overloaded; - - final AttachableImpl attachable; - - AbstractStoredObject(Configuration configuration, String name, Schema schema, Package pkg) { - super(name, schema); - - this.attachable = new AttachableImpl(this, configuration); - this.pkg = pkg; - this.inParameters = new ArrayList>(); - this.inValues = new HashMap, Field>(); - } - - @Override - public final void attach(Configuration configuration) { - attachable.attach(configuration); - } - - @Override - public final Package getPackage() { - return pkg; - } - - protected final void toSQLQualifiedName(RenderContext context) { - if (getMappedSchema(context, getSchema()) != null) { - context.sql(getMappedSchema(context, getSchema())); - context.sql("."); - } - - if (getPackage() != null) { - context.sql(getPackage()); - context.sql("."); - } - - context.literal(getName()); - } - - @Override - protected final List getAttachables0() { - List result = new ArrayList(); - - result.addAll(getAttachables(pkg)); - result.addAll(getAttachables(inParameters)); - result.addAll(getAttachables(inValues.keySet())); - result.addAll(getAttachables(inValues.values())); - result.addAll(getAttachables1()); - - return result; - } - - protected abstract List getAttachables1(); - - @Override - public int execute(Configuration configuration) throws SQLException { - - // Ensure that all depending Attachables are attached - attach(configuration); - return execute(); - } - - protected final Map, Field> getInValues() { - return inValues; - } - - protected final void setNumber(Parameter parameter, Number value) { - setValue(parameter, TypeUtils.convert(value, parameter.getType())); - } - - protected final void setNumber(Parameter parameter, Field value) { - setField(parameter, value); - } - - protected final void setValue(Parameter parameter, Object value) { - setField(parameter, val(value, parameter.getDataType())); - } - - /* - * #326 - Avoid overloading setValue() - */ - protected final void setField(Parameter parameter, Field value) { - // Be sure null is correctly represented as a null field - if (value == null) { - setField(parameter, val(null, parameter.getDataType())); - } - - // Add the field to the in-values - else { - inValues.put(parameter, value); - } - } - - public final List> getInParameters() { - return Collections.unmodifiableList(inParameters); - } - - protected void addInParameter(Parameter parameter) { - inParameters.add(parameter); - - // IN parameters are initialised with null by default - inValues.put(parameter, val(null, parameter.getDataType())); - } - - protected final void setOverloaded(boolean overloaded) { - this.overloaded = overloaded; - } - - protected final boolean isOverloaded() { - return overloaded; - } -} diff --git a/jOOQ/src/main/java/org/jooq/impl/AbstractStoredProcedure.java b/jOOQ/src/main/java/org/jooq/impl/AbstractStoredProcedure.java deleted file mode 100644 index a166a03df5..0000000000 --- a/jOOQ/src/main/java/org/jooq/impl/AbstractStoredProcedure.java +++ /dev/null @@ -1,133 +0,0 @@ -/** - * Copyright (c) 2009-2011, Lukas Eder, lukas.eder@gmail.com - * All rights reserved. - * - * This software is licensed to you under the Apache License, Version 2.0 - * (the "License"); You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * . Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * - * . Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * . Neither the name "jOOQ" nor the names of its contributors may be - * used to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package org.jooq.impl; - -import java.util.ArrayList; -import java.util.List; - -import org.jooq.Attachable; -import org.jooq.Configuration; -import org.jooq.Package; -import org.jooq.Parameter; -import org.jooq.SQLDialect; -import org.jooq.Schema; -import org.jooq.StoredProcedure; - -/** - * A common base class for stored procedures - *

      - * This type is for JOOQ INTERNAL USE only. Do not reference directly - * - * @author Lukas Eder - * @deprecated - 1.6.8 [#852] - The stored procedure / stored function - * distinction has been reviewed in jOOQ. The 12 currently supported - * RDBMS have such a distinct idea of what is a procedure and what - * is a function that it makes no longer sense to distinguish them - * generally, in jOOQ. See https://sourceforge.net/apps/trac/jooq/ticket/852 for more - * details. - */ -@Deprecated -public abstract class AbstractStoredProcedure extends AbstractStoredObject implements StoredProcedure { - - private static final long serialVersionUID = 750586958119197957L; - - private final List> allParameters; - private final List> outParameters; - private Parameter returnParameter; - - protected AbstractStoredProcedure(SQLDialect dialect, String name, Schema schema, Package pkg) { - this(Factory.getNewFactory(dialect), name, schema, pkg); - } - - protected AbstractStoredProcedure(Configuration configuration, String name, Schema schema, Package pkg) { - super(configuration, name, schema, pkg); - - this.allParameters = new ArrayList>(); - this.outParameters = new ArrayList>(); - } - - @Override - protected final List getAttachables1() { - List result = new ArrayList(); - - result.addAll(getAttachables(allParameters)); - result.addAll(getAttachables2()); - - return result; - } - - protected abstract List getAttachables2(); - - @Override - public final List> getOutParameters() { - return outParameters; - } - - protected final Parameter getReturnParameter() { - return returnParameter; - } - - @Override - public final List> getParameters() { - return allParameters; - } - - protected void addInOutParameter(Parameter parameter) { - super.addInParameter(parameter); - outParameters.add(parameter); - allParameters.add(parameter); - } - - @Override - protected void addInParameter(Parameter parameter) { - super.addInParameter(parameter); - allParameters.add(parameter); - } - - protected void addOutParameter(Parameter parameter) { - outParameters.add(parameter); - allParameters.add(parameter); - } - - protected void setReturnParameter(Parameter parameter) { - returnParameter = parameter; - allParameters.add(parameter); - } - - protected abstract T getValue(Parameter parameter); -} diff --git a/jOOQ/src/main/java/org/jooq/impl/AbstractSubSelect.java b/jOOQ/src/main/java/org/jooq/impl/AbstractSubSelect.java index d49746497f..737fdc61f8 100644 --- a/jOOQ/src/main/java/org/jooq/impl/AbstractSubSelect.java +++ b/jOOQ/src/main/java/org/jooq/impl/AbstractSubSelect.java @@ -39,7 +39,6 @@ import static org.jooq.SQLDialect.SQLSERVER; import static org.jooq.impl.Factory.literal; import static org.jooq.impl.Factory.one; -import java.sql.SQLException; import java.util.Arrays; import java.util.Collection; import java.util.List; @@ -144,7 +143,7 @@ implements } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.declareFields(true) .bind((QueryPart) getSelect0()) .declareFields(false) @@ -653,8 +652,8 @@ implements return table.getFields().size() > 0; } + @SuppressWarnings("unchecked") @Override - @SuppressWarnings({ "unchecked", "deprecation" }) public final Class getRecordType() { // Generated record classes only come into play, when the select is // - on a single table diff --git a/jOOQ/src/main/java/org/jooq/impl/AliasProviderImpl.java b/jOOQ/src/main/java/org/jooq/impl/AliasProviderImpl.java index e3f16c125f..3f0d6cff88 100644 --- a/jOOQ/src/main/java/org/jooq/impl/AliasProviderImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/AliasProviderImpl.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.List; import org.jooq.AliasProvider; @@ -132,7 +131,7 @@ class AliasProviderImpl> extends AbstractNamedQueryPa } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { if (context.declareFields() || context.declareTables()) { context.bind(aliasProvider); } diff --git a/jOOQ/src/main/java/org/jooq/impl/ArrayConstant.java b/jOOQ/src/main/java/org/jooq/impl/ArrayConstant.java index 0f0881ac4c..802824c568 100644 --- a/jOOQ/src/main/java/org/jooq/impl/ArrayConstant.java +++ b/jOOQ/src/main/java/org/jooq/impl/ArrayConstant.java @@ -37,7 +37,6 @@ package org.jooq.impl; import static org.jooq.impl.Factory.val; -import java.sql.SQLException; import java.util.ArrayList; import java.util.List; @@ -92,7 +91,7 @@ class ArrayConstant extends AbstractField { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bindValues(array); } diff --git a/jOOQ/src/main/java/org/jooq/impl/ArrayTable.java b/jOOQ/src/main/java/org/jooq/impl/ArrayTable.java index 641deacaf0..c2522868ae 100644 --- a/jOOQ/src/main/java/org/jooq/impl/ArrayTable.java +++ b/jOOQ/src/main/java/org/jooq/impl/ArrayTable.java @@ -37,7 +37,6 @@ package org.jooq.impl; import static org.jooq.impl.Factory.field; -import java.sql.SQLException; import java.util.Collections; import java.util.List; @@ -86,7 +85,7 @@ class ArrayTable extends AbstractTable { this.field.add(field("COLUMN_VALUE", arrayType)); } - @SuppressWarnings({ "unchecked", "deprecation" }) + @SuppressWarnings("unchecked") @Override public final Class getRecordType() { return (Class) RecordImpl.class; @@ -140,7 +139,7 @@ class ArrayTable extends AbstractTable { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { switch (context.getDialect()) { case ORACLE: case H2: diff --git a/jOOQ/src/main/java/org/jooq/impl/BatchMultiple.java b/jOOQ/src/main/java/org/jooq/impl/BatchMultiple.java index ff6655a5ea..041a686a6b 100644 --- a/jOOQ/src/main/java/org/jooq/impl/BatchMultiple.java +++ b/jOOQ/src/main/java/org/jooq/impl/BatchMultiple.java @@ -61,16 +61,17 @@ class BatchMultiple implements Batch { } @Override - public final int[] execute() throws SQLException { + public final int[] execute() { StopWatch watch = new StopWatch(); Connection connection = create.getConnection(); Statement statement = null; + String sql = null; try { statement = connection.createStatement(); for (Query query : queries) { - String sql = create.renderInlined(query); + sql = create.renderInlined(query); watch.splitTrace("SQL rendered"); if (log.isDebugEnabled()) @@ -84,6 +85,9 @@ class BatchMultiple implements Batch { return result; } + catch (SQLException e) { + throw JooqUtil.translate("BatchMultiple.execute", sql, e); + } finally { JooqUtil.safeClose(statement); watch.splitDebug("Statement executed"); diff --git a/jOOQ/src/main/java/org/jooq/impl/BatchSingle.java b/jOOQ/src/main/java/org/jooq/impl/BatchSingle.java index 8ef3669666..5077cd8893 100644 --- a/jOOQ/src/main/java/org/jooq/impl/BatchSingle.java +++ b/jOOQ/src/main/java/org/jooq/impl/BatchSingle.java @@ -65,20 +65,21 @@ class BatchSingle implements BatchBindStep { } @Override - public final BatchSingle bind(Object... bindValues) throws SQLException { + public final BatchSingle bind(Object... bindValues) { allBindValues.add(bindValues); return this; } @Override - public final int[] execute() throws SQLException { + public final int[] execute() { StopWatch watch = new StopWatch(); Connection connection = create.getConnection(); PreparedStatement statement = null; + String sql = null; try { - String sql = create.render(query); + sql = create.render(query); watch.splitTrace("SQL rendered"); if (log.isDebugEnabled()) @@ -100,6 +101,9 @@ class BatchSingle implements BatchBindStep { return result; } + catch (SQLException e) { + throw JooqUtil.translate("BatchSingle.execute", sql, e); + } finally { JooqUtil.safeClose(statement); watch.splitDebug("Statement executed"); diff --git a/jOOQ/src/main/java/org/jooq/impl/BetweenCondition.java b/jOOQ/src/main/java/org/jooq/impl/BetweenCondition.java index 90df44233b..73270f127e 100644 --- a/jOOQ/src/main/java/org/jooq/impl/BetweenCondition.java +++ b/jOOQ/src/main/java/org/jooq/impl/BetweenCondition.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.List; import org.jooq.Attachable; @@ -77,7 +76,7 @@ class BetweenCondition extends AbstractCondition { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(field).bind(minValue).bind(maxValue); } diff --git a/jOOQ/src/main/java/org/jooq/impl/BindValueCollector.java b/jOOQ/src/main/java/org/jooq/impl/BindValueCollector.java index eb581cefa8..e24652786b 100644 --- a/jOOQ/src/main/java/org/jooq/impl/BindValueCollector.java +++ b/jOOQ/src/main/java/org/jooq/impl/BindValueCollector.java @@ -51,7 +51,6 @@ import java.sql.Ref; import java.sql.ResultSet; import java.sql.ResultSetMetaData; import java.sql.RowId; -import java.sql.SQLException; import java.sql.SQLWarning; import java.sql.SQLXML; import java.sql.Time; @@ -74,457 +73,457 @@ class BindValueCollector implements PreparedStatement { final List result = new ArrayList(); @Override - public T unwrap(Class iface) throws SQLException { + public T unwrap(Class iface) { return null; } @Override - public boolean isWrapperFor(Class iface) throws SQLException { + public boolean isWrapperFor(Class iface) { return false; } @Override - public ResultSet executeQuery(String sql) throws SQLException { + public ResultSet executeQuery(String sql) { return null; } @Override - public int executeUpdate(String sql) throws SQLException { + public int executeUpdate(String sql) { return 0; } @Override - public void close() throws SQLException {} + public void close() {} @Override - public int getMaxFieldSize() throws SQLException { + public int getMaxFieldSize() { return 0; } @Override - public void setMaxFieldSize(int max) throws SQLException {} + public void setMaxFieldSize(int max) {} @Override - public int getMaxRows() throws SQLException { + public int getMaxRows() { return 0; } @Override - public void setMaxRows(int max) throws SQLException {} + public void setMaxRows(int max) {} @Override - public void setEscapeProcessing(boolean enable) throws SQLException {} + public void setEscapeProcessing(boolean enable) {} @Override - public int getQueryTimeout() throws SQLException { + public int getQueryTimeout() { return 0; } @Override - public void setQueryTimeout(int seconds) throws SQLException {} + public void setQueryTimeout(int seconds) {} @Override - public void cancel() throws SQLException {} + public void cancel() {} @Override - public SQLWarning getWarnings() throws SQLException { + public SQLWarning getWarnings() { return null; } @Override - public void clearWarnings() throws SQLException {} + public void clearWarnings() {} @Override - public void setCursorName(String name) throws SQLException {} + public void setCursorName(String name) {} @Override - public boolean execute(String sql) throws SQLException { + public boolean execute(String sql) { return false; } @Override - public ResultSet getResultSet() throws SQLException { + public ResultSet getResultSet() { return null; } @Override - public int getUpdateCount() throws SQLException { + public int getUpdateCount() { return 0; } @Override - public boolean getMoreResults() throws SQLException { + public boolean getMoreResults() { return false; } @Override - public void setFetchDirection(int direction) throws SQLException {} + public void setFetchDirection(int direction) {} @Override - public int getFetchDirection() throws SQLException { + public int getFetchDirection() { return 0; } @Override - public void setFetchSize(int rows) throws SQLException {} + public void setFetchSize(int rows) {} @Override - public int getFetchSize() throws SQLException { + public int getFetchSize() { return 0; } @Override - public int getResultSetConcurrency() throws SQLException { + public int getResultSetConcurrency() { return 0; } @Override - public int getResultSetType() throws SQLException { + public int getResultSetType() { return 0; } @Override - public void addBatch(String sql) throws SQLException {} + public void addBatch(String sql) {} @Override - public void clearBatch() throws SQLException {} + public void clearBatch() {} @Override - public int[] executeBatch() throws SQLException { + public int[] executeBatch() { return null; } @Override - public Connection getConnection() throws SQLException { + public Connection getConnection() { return null; } @Override - public boolean getMoreResults(int current) throws SQLException { + public boolean getMoreResults(int current) { return false; } @Override - public ResultSet getGeneratedKeys() throws SQLException { + public ResultSet getGeneratedKeys() { return null; } @Override - public int executeUpdate(String sql, int autoGeneratedKeys) throws SQLException { + public int executeUpdate(String sql, int autoGeneratedKeys) { return 0; } @Override - public int executeUpdate(String sql, int[] columnIndexes) throws SQLException { + public int executeUpdate(String sql, int[] columnIndexes) { return 0; } @Override - public int executeUpdate(String sql, String[] columnNames) throws SQLException { + public int executeUpdate(String sql, String[] columnNames) { return 0; } @Override - public boolean execute(String sql, int autoGeneratedKeys) throws SQLException { + public boolean execute(String sql, int autoGeneratedKeys) { return false; } @Override - public boolean execute(String sql, int[] columnIndexes) throws SQLException { + public boolean execute(String sql, int[] columnIndexes) { return false; } @Override - public boolean execute(String sql, String[] columnNames) throws SQLException { + public boolean execute(String sql, String[] columnNames) { return false; } @Override - public int getResultSetHoldability() throws SQLException { + public int getResultSetHoldability() { return 0; } @Override - public boolean isClosed() throws SQLException { + public boolean isClosed() { return false; } @Override - public void setPoolable(boolean poolable) throws SQLException {} + public void setPoolable(boolean poolable) {} @Override - public boolean isPoolable() throws SQLException { + public boolean isPoolable() { return false; } @Override - public ResultSet executeQuery() throws SQLException { + public ResultSet executeQuery() { return null; } @Override - public int executeUpdate() throws SQLException { + public int executeUpdate() { return 0; } @Override - public void setNull(int parameterIndex, int sqlType) throws SQLException { + public void setNull(int parameterIndex, int sqlType) { result.add(null); } @Override - public void setBoolean(int parameterIndex, boolean x) throws SQLException { + public void setBoolean(int parameterIndex, boolean x) { result.add(x); } @Override - public void setByte(int parameterIndex, byte x) throws SQLException { + public void setByte(int parameterIndex, byte x) { result.add(x); } @Override - public void setShort(int parameterIndex, short x) throws SQLException { + public void setShort(int parameterIndex, short x) { result.add(x); } @Override - public void setInt(int parameterIndex, int x) throws SQLException { + public void setInt(int parameterIndex, int x) { result.add(x); } @Override - public void setLong(int parameterIndex, long x) throws SQLException { + public void setLong(int parameterIndex, long x) { result.add(x); } @Override - public void setFloat(int parameterIndex, float x) throws SQLException { + public void setFloat(int parameterIndex, float x) { result.add(x); } @Override - public void setDouble(int parameterIndex, double x) throws SQLException { + public void setDouble(int parameterIndex, double x) { result.add(x); } @Override - public void setBigDecimal(int parameterIndex, BigDecimal x) throws SQLException { + public void setBigDecimal(int parameterIndex, BigDecimal x) { result.add(x); } @Override - public void setString(int parameterIndex, String x) throws SQLException { + public void setString(int parameterIndex, String x) { result.add(x); } @Override - public void setBytes(int parameterIndex, byte[] x) throws SQLException { + public void setBytes(int parameterIndex, byte[] x) { result.add(x); } @Override - public void setDate(int parameterIndex, Date x) throws SQLException { + public void setDate(int parameterIndex, Date x) { result.add(x); } @Override - public void setTime(int parameterIndex, Time x) throws SQLException { + public void setTime(int parameterIndex, Time x) { result.add(x); } @Override - public void setTimestamp(int parameterIndex, Timestamp x) throws SQLException { + public void setTimestamp(int parameterIndex, Timestamp x) { result.add(x); } @Override - public void setAsciiStream(int parameterIndex, InputStream x, int length) throws SQLException { + public void setAsciiStream(int parameterIndex, InputStream x, int length) { result.add(x); } @Override - public void setUnicodeStream(int parameterIndex, InputStream x, int length) throws SQLException { + public void setUnicodeStream(int parameterIndex, InputStream x, int length) { result.add(x); } @Override - public void setBinaryStream(int parameterIndex, InputStream x, int length) throws SQLException { + public void setBinaryStream(int parameterIndex, InputStream x, int length) { result.add(x); } @Override - public void clearParameters() throws SQLException {} + public void clearParameters() {} @Override - public void setObject(int parameterIndex, Object x, int targetSqlType) throws SQLException { + public void setObject(int parameterIndex, Object x, int targetSqlType) { result.add(x); } @Override - public void setObject(int parameterIndex, Object x) throws SQLException { + public void setObject(int parameterIndex, Object x) { result.add(x); } @Override - public boolean execute() throws SQLException { + public boolean execute() { return false; } @Override - public void addBatch() throws SQLException {} + public void addBatch() {} @Override - public void setCharacterStream(int parameterIndex, Reader x, int length) throws SQLException { + public void setCharacterStream(int parameterIndex, Reader x, int length) { result.add(x); } @Override - public void setRef(int parameterIndex, Ref x) throws SQLException { + public void setRef(int parameterIndex, Ref x) { result.add(x); } @Override - public void setBlob(int parameterIndex, Blob x) throws SQLException { + public void setBlob(int parameterIndex, Blob x) { result.add(x); } @Override - public void setClob(int parameterIndex, Clob x) throws SQLException { + public void setClob(int parameterIndex, Clob x) { result.add(x); } @Override - public void setArray(int parameterIndex, Array x) throws SQLException { + public void setArray(int parameterIndex, Array x) { result.add(x); } @Override - public ResultSetMetaData getMetaData() throws SQLException { + public ResultSetMetaData getMetaData() { return null; } @Override - public void setDate(int parameterIndex, Date x, Calendar cal) throws SQLException { + public void setDate(int parameterIndex, Date x, Calendar cal) { result.add(x); } @Override - public void setTime(int parameterIndex, Time x, Calendar cal) throws SQLException { + public void setTime(int parameterIndex, Time x, Calendar cal) { result.add(x); } @Override - public void setTimestamp(int parameterIndex, Timestamp x, Calendar cal) throws SQLException { + public void setTimestamp(int parameterIndex, Timestamp x, Calendar cal) { result.add(x); } @Override - public void setNull(int parameterIndex, int sqlType, String typeName) throws SQLException { + public void setNull(int parameterIndex, int sqlType, String typeName) { result.add(null); } @Override - public void setURL(int parameterIndex, URL x) throws SQLException { + public void setURL(int parameterIndex, URL x) { result.add(x); } @Override - public ParameterMetaData getParameterMetaData() throws SQLException { + public ParameterMetaData getParameterMetaData() { return null; } @Override - public void setRowId(int parameterIndex, RowId x) throws SQLException { + public void setRowId(int parameterIndex, RowId x) { result.add(x); } @Override - public void setNString(int parameterIndex, String x) throws SQLException { + public void setNString(int parameterIndex, String x) { result.add(x); } @Override - public void setNCharacterStream(int parameterIndex, Reader x, long length) throws SQLException { + public void setNCharacterStream(int parameterIndex, Reader x, long length) { result.add(x); } @Override - public void setNClob(int parameterIndex, NClob x) throws SQLException { + public void setNClob(int parameterIndex, NClob x) { result.add(x); } @Override - public void setClob(int parameterIndex, Reader x, long length) throws SQLException { + public void setClob(int parameterIndex, Reader x, long length) { result.add(x); } @Override - public void setBlob(int parameterIndex, InputStream x, long length) throws SQLException { + public void setBlob(int parameterIndex, InputStream x, long length) { result.add(x); } @Override - public void setNClob(int parameterIndex, Reader x, long length) throws SQLException { + public void setNClob(int parameterIndex, Reader x, long length) { result.add(x); } @Override - public void setSQLXML(int parameterIndex, SQLXML x) throws SQLException { + public void setSQLXML(int parameterIndex, SQLXML x) { result.add(x); } @Override - public void setObject(int parameterIndex, Object x, int targetSqlType, int scaleOrLength) throws SQLException { + public void setObject(int parameterIndex, Object x, int targetSqlType, int scaleOrLength) { result.add(x); } @Override - public void setAsciiStream(int parameterIndex, InputStream x, long length) throws SQLException { + public void setAsciiStream(int parameterIndex, InputStream x, long length) { result.add(x); } @Override - public void setBinaryStream(int parameterIndex, InputStream x, long length) throws SQLException { + public void setBinaryStream(int parameterIndex, InputStream x, long length) { result.add(x); } @Override - public void setCharacterStream(int parameterIndex, Reader x, long length) throws SQLException { + public void setCharacterStream(int parameterIndex, Reader x, long length) { result.add(x); } @Override - public void setAsciiStream(int parameterIndex, InputStream x) throws SQLException { + public void setAsciiStream(int parameterIndex, InputStream x) { result.add(x); } @Override - public void setBinaryStream(int parameterIndex, InputStream x) throws SQLException { + public void setBinaryStream(int parameterIndex, InputStream x) { result.add(x); } @Override - public void setCharacterStream(int parameterIndex, Reader x) throws SQLException { + public void setCharacterStream(int parameterIndex, Reader x) { result.add(x); } @Override - public void setNCharacterStream(int parameterIndex, Reader x) throws SQLException { + public void setNCharacterStream(int parameterIndex, Reader x) { result.add(x); } @Override - public void setClob(int parameterIndex, Reader x) throws SQLException { + public void setClob(int parameterIndex, Reader x) { result.add(x); } @Override - public void setBlob(int parameterIndex, InputStream x) throws SQLException { + public void setBlob(int parameterIndex, InputStream x) { result.add(x); } @Override - public void setNClob(int parameterIndex, Reader x) throws SQLException { + public void setNClob(int parameterIndex, Reader x) { result.add(x); } } diff --git a/jOOQ/src/main/java/org/jooq/impl/CaseConditionStepImpl.java b/jOOQ/src/main/java/org/jooq/impl/CaseConditionStepImpl.java index 3351ba09d6..4f119ad2db 100644 --- a/jOOQ/src/main/java/org/jooq/impl/CaseConditionStepImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/CaseConditionStepImpl.java @@ -37,7 +37,6 @@ package org.jooq.impl; import static org.jooq.impl.Factory.val; -import java.sql.SQLException; import java.util.ArrayList; import java.util.List; @@ -105,7 +104,7 @@ class CaseConditionStepImpl extends AbstractField implements CaseCondition } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { for (int i = 0; i < conditions.size(); i++) { context.bind(conditions.get(i)); context.bind(results.get(i)); diff --git a/jOOQ/src/main/java/org/jooq/impl/CaseWhenStepImpl.java b/jOOQ/src/main/java/org/jooq/impl/CaseWhenStepImpl.java index 99052c658e..be3eb8bbd8 100644 --- a/jOOQ/src/main/java/org/jooq/impl/CaseWhenStepImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/CaseWhenStepImpl.java @@ -37,7 +37,6 @@ package org.jooq.impl; import static org.jooq.impl.Factory.val; -import java.sql.SQLException; import java.util.ArrayList; import java.util.List; @@ -117,7 +116,7 @@ class CaseWhenStepImpl extends AbstractField implements CaseWhenStep extends AbstractField { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { if (context.getDialect() == SQLDialect.DERBY) { // [#859] casting numeric types to BOOLEAN diff --git a/jOOQ/src/main/java/org/jooq/impl/CombinedCondition.java b/jOOQ/src/main/java/org/jooq/impl/CombinedCondition.java index 89a85d009a..1b3d43576c 100644 --- a/jOOQ/src/main/java/org/jooq/impl/CombinedCondition.java +++ b/jOOQ/src/main/java/org/jooq/impl/CombinedCondition.java @@ -38,7 +38,6 @@ package org.jooq.impl; import static org.jooq.impl.Factory.trueCondition; -import java.sql.SQLException; import java.util.ArrayList; import java.util.Collection; import java.util.List; @@ -101,7 +100,7 @@ class CombinedCondition extends AbstractCondition { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(conditions); } diff --git a/jOOQ/src/main/java/org/jooq/impl/CompareCondition.java b/jOOQ/src/main/java/org/jooq/impl/CompareCondition.java index 885726c3b6..845a44aa1f 100644 --- a/jOOQ/src/main/java/org/jooq/impl/CompareCondition.java +++ b/jOOQ/src/main/java/org/jooq/impl/CompareCondition.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.List; import org.jooq.Attachable; @@ -68,7 +67,7 @@ class CompareCondition extends AbstractCondition { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(field1).bind(field2); } diff --git a/jOOQ/src/main/java/org/jooq/impl/ConditionProviderImpl.java b/jOOQ/src/main/java/org/jooq/impl/ConditionProviderImpl.java index d0de0a0f99..47d57f1771 100644 --- a/jOOQ/src/main/java/org/jooq/impl/ConditionProviderImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/ConditionProviderImpl.java @@ -38,7 +38,6 @@ package org.jooq.impl; import static org.jooq.impl.Factory.trueCondition; -import java.sql.SQLException; import java.util.Arrays; import java.util.Collection; import java.util.List; @@ -121,7 +120,7 @@ class ConditionProviderImpl extends AbstractQueryPart implements ConditionProvid } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(getWhere()); } diff --git a/jOOQ/src/main/java/org/jooq/impl/Constant.java b/jOOQ/src/main/java/org/jooq/impl/Constant.java index 5312722fd1..956dd3cbc2 100644 --- a/jOOQ/src/main/java/org/jooq/impl/Constant.java +++ b/jOOQ/src/main/java/org/jooq/impl/Constant.java @@ -37,7 +37,6 @@ package org.jooq.impl; import java.math.BigDecimal; -import java.sql.SQLException; import java.util.Collections; import java.util.List; @@ -141,7 +140,7 @@ class Constant extends AbstractField { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bindValue(value, getType()); } diff --git a/jOOQ/src/main/java/org/jooq/impl/CursorImpl.java b/jOOQ/src/main/java/org/jooq/impl/CursorImpl.java index e82707926b..c44ccb9d00 100644 --- a/jOOQ/src/main/java/org/jooq/impl/CursorImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/CursorImpl.java @@ -68,7 +68,7 @@ class CursorImpl implements Cursor { private transient ResultSet rs; private transient Iterator iterator; - @SuppressWarnings({ "unchecked", "deprecation" }) + @SuppressWarnings("unchecked") CursorImpl(Configuration configuration, FieldProvider fields, ResultSet rs) { this(configuration, fields, rs, null, (Class) RecordImpl.class); } @@ -116,32 +116,22 @@ class CursorImpl implements Cursor { } @Override - public final boolean hasNext() throws SQLException { + public final boolean hasNext() { return iterator().hasNext(); } @Override - public final Result fetch() throws SQLException { + public final Result fetch() { return fetch(Integer.MAX_VALUE); } @Override - public final R fetchOne() throws SQLException { + public final R fetchOne() { return iterator().next(); } @Override - public final Result fetch(int number) throws SQLException { - return fetchResult(number); - } - - @Override - public final Result fetchResult() throws SQLException { - return fetchResult(Integer.MAX_VALUE); - } - - @Override - public final Result fetchResult(int number) throws SQLException { + public final Result fetch(int number) { ResultImpl result = new ResultImpl(configuration, fields); R record = null; @@ -162,7 +152,7 @@ class CursorImpl implements Cursor { } @Override - public final RecordHandler fetchInto(RecordHandler handler) throws SQLException { + public final RecordHandler fetchInto(RecordHandler handler) { R record = null; while ((record = fetchOne()) != null) { @@ -173,12 +163,12 @@ class CursorImpl implements Cursor { } @Override - public final List fetchInto(Class clazz) throws SQLException { + public final List fetchInto(Class clazz) { return fetch().into(clazz); } @Override - public final void close() throws SQLException { + public final void close() { JooqUtil.safeClose(rs, stmt); rs = null; stmt = null; @@ -210,12 +200,8 @@ class CursorImpl implements Cursor { @Override public final boolean hasNext() { if (hasNext == null) { - try { - next = fetch(); - hasNext = (next != null); - } catch (SQLException e) { - throw new RuntimeException(e); - } + next = fetch(); + hasNext = (next != null); } return hasNext; @@ -224,11 +210,7 @@ class CursorImpl implements Cursor { @Override public final R next() { if (hasNext == null) { - try { - return fetch(); - } catch (SQLException e) { - throw new RuntimeException(e); - } + return fetch(); } R result = next; @@ -237,22 +219,27 @@ class CursorImpl implements Cursor { return result; } - private final R fetch() throws SQLException { + private final R fetch() { R record = null; - if (!isClosed && rs.next()) { - record = JooqUtil.newRecord(type, fields, configuration); - final List> fieldList = fields.getFields(); - final int size = fieldList.size(); + try { + if (!isClosed && rs.next()) { + record = JooqUtil.newRecord(type, fields, configuration); + final List> fieldList = fields.getFields(); + final int size = fieldList.size(); - for (int i = 0; i < size; i++) { - setValue((AbstractRecord) record, fieldList.get(i), i, rs); - } + for (int i = 0; i < size; i++) { + setValue((AbstractRecord) record, fieldList.get(i), i, rs); + } - if (log.isTraceEnabled()) { - log.trace("Fetching record", record); + if (log.isTraceEnabled()) { + log.trace("Fetching record", record); + } } } + catch (SQLException e) { + throw JooqUtil.translate("Cursor.fetch", null, e); + } // Conveniently close cursors and underlying objects after the last // Record was fetched diff --git a/jOOQ/src/main/java/org/jooq/impl/CustomCondition.java b/jOOQ/src/main/java/org/jooq/impl/CustomCondition.java index 0f2aee4a82..d0036cd48b 100644 --- a/jOOQ/src/main/java/org/jooq/impl/CustomCondition.java +++ b/jOOQ/src/main/java/org/jooq/impl/CustomCondition.java @@ -40,7 +40,6 @@ import java.util.List; import org.jooq.Attachable; import org.jooq.Condition; -import org.jooq.Configuration; /** * A base class for custom {@link Condition} implementations in client code. @@ -50,16 +49,11 @@ import org.jooq.Configuration; * interface are already implemented. Only these two methods need further * implementation: *
        - *
      • {@link #toSQLReference(Configuration, boolean)}
      • - *
      • {@link #bind(Configuration, java.sql.PreparedStatement, int)}
      • + *
      • {@link #toSQL(org.jooq.RenderContext)}
      • + *
      • {@link #bind(org.jooq.BindContext)}
      • *
      * Refer to those method's Javadoc for further details about their expected - * behaviour. Note that, optionally, an additional implementation for - *
        - *
      • {@link #toSQLDeclaration(Configuration, boolean)}
      • - *
      - * may also be provided, if the default behaviour thereof needs to be - * overridden. + * behaviour. * * @author Lukas Eder */ diff --git a/jOOQ/src/main/java/org/jooq/impl/CustomField.java b/jOOQ/src/main/java/org/jooq/impl/CustomField.java index aaba422a18..044f698b45 100644 --- a/jOOQ/src/main/java/org/jooq/impl/CustomField.java +++ b/jOOQ/src/main/java/org/jooq/impl/CustomField.java @@ -39,7 +39,6 @@ import java.util.Collections; import java.util.List; import org.jooq.Attachable; -import org.jooq.Configuration; import org.jooq.DataType; import org.jooq.Field; @@ -50,16 +49,11 @@ import org.jooq.Field; * useful base class. All necessary parts of the {@link Field} interface are * already implemented. Only these two methods need further implementation: *
        - *
      • {@link #toSQLReference(Configuration, boolean)}
      • - *
      • {@link #bind(Configuration, java.sql.PreparedStatement, int)}
      • + *
      • {@link #toSQL(org.jooq.RenderContext)}
      • + *
      • {@link #bind(org.jooq.BindContext)}
      • *
      * Refer to those method's Javadoc for further details about their expected - * behaviour. Note that, optionally, an additional implementation for - *
        - *
      • {@link #toSQLDeclaration(Configuration, boolean)}
      • - *
      - * may also be provided, if the default behaviour thereof needs to be - * overridden. + * behaviour. * * @author Lukas Eder */ diff --git a/jOOQ/src/main/java/org/jooq/impl/DefaultArray.java b/jOOQ/src/main/java/org/jooq/impl/DefaultArray.java index 01ea566515..8c502327f5 100644 --- a/jOOQ/src/main/java/org/jooq/impl/DefaultArray.java +++ b/jOOQ/src/main/java/org/jooq/impl/DefaultArray.java @@ -37,7 +37,6 @@ package org.jooq.impl; import java.sql.Array; import java.sql.ResultSet; -import java.sql.SQLException; import java.util.Map; import org.jooq.SQLDialect; @@ -56,56 +55,56 @@ class DefaultArray implements Array { } @Override - public String getBaseTypeName() throws SQLException { + public String getBaseTypeName() { return FieldTypeHelper.getDataType(dialect, type.getComponentType()).getTypeName(); } @Override - public int getBaseType() throws SQLException { + public int getBaseType() { throw new SQLDialectNotSupportedException("Array.getBaseType()"); } @Override - public Object getArray() throws SQLException { + public Object getArray() { return array; } @Override - public Object getArray(Map> map) throws SQLException { + public Object getArray(Map> map) { return array; } @Override - public Object getArray(long index, int count) throws SQLException { + public Object getArray(long index, int count) { throw new SQLDialectNotSupportedException("Array.getArray(long, int)"); } @Override - public Object getArray(long index, int count, Map> map) throws SQLException { + public Object getArray(long index, int count, Map> map) { throw new SQLDialectNotSupportedException("Array.getArray(long, int, Map)"); } @Override - public ResultSet getResultSet() throws SQLException { + public ResultSet getResultSet() { throw new SQLDialectNotSupportedException("Array.getResultSet()"); } @Override - public ResultSet getResultSet(Map> map) throws SQLException { + public ResultSet getResultSet(Map> map) { throw new SQLDialectNotSupportedException("Array.getResultSet(Map)"); } @Override - public ResultSet getResultSet(long index, int count) throws SQLException { + public ResultSet getResultSet(long index, int count) { throw new SQLDialectNotSupportedException("Array.getResultSet(long, int)"); } @Override - public ResultSet getResultSet(long index, int count, Map> map) throws SQLException { + public ResultSet getResultSet(long index, int count, Map> map) { throw new SQLDialectNotSupportedException("Array.getResultSet(long, int, Map)"); } @Override - public void free() throws SQLException { + public void free() { } } diff --git a/jOOQ/src/main/java/org/jooq/impl/DefaultBindContext.java b/jOOQ/src/main/java/org/jooq/impl/DefaultBindContext.java index 8a226cdd46..4831c32762 100644 --- a/jOOQ/src/main/java/org/jooq/impl/DefaultBindContext.java +++ b/jOOQ/src/main/java/org/jooq/impl/DefaultBindContext.java @@ -101,7 +101,7 @@ class DefaultBindContext extends AbstractContext implements BindCon } @Override - public final BindContext bind(QueryPart part) throws SQLException { + public final BindContext bind(QueryPart part) { QueryPartInternal internal = part.internalAPI(QueryPartInternal.class); // If this is supposed to be a declaration section and the part isn't @@ -130,7 +130,7 @@ class DefaultBindContext extends AbstractContext implements BindCon } @Override - public final BindContext bind(Collection parts) throws SQLException { + public final BindContext bind(Collection parts) { for (QueryPart part : parts) { bind(part); } @@ -139,13 +139,13 @@ class DefaultBindContext extends AbstractContext implements BindCon } @Override - public final BindContext bind(QueryPart[] parts) throws SQLException { + public final BindContext bind(QueryPart[] parts) { bind(Arrays.asList(parts)); return this; } @Override - public final BindContext bindValues(Object... values) throws SQLException { + public final BindContext bindValues(Object... values) { // [#724] When values is null, this is probably due to API-misuse // The user probably meant new Object[] { null } @@ -162,9 +162,18 @@ class DefaultBindContext extends AbstractContext implements BindCon return this; } - @SuppressWarnings("unchecked") @Override - public final BindContext bindValue(Object value, Class type) throws SQLException { + public final BindContext bindValue(Object value, Class type) { + try { + return bindValue0(value, type); + } + catch (SQLException e) { + throw JooqUtil.translate("DefaultBindContext.bindValue", null, e); + } + } + + @SuppressWarnings("unchecked") + private final BindContext bindValue0(Object value, Class type) throws SQLException { SQLDialect dialect = configuration.getDialect(); if (log.isTraceEnabled()) { diff --git a/jOOQ/src/main/java/org/jooq/impl/DefaultConfiguration.java b/jOOQ/src/main/java/org/jooq/impl/DefaultConfiguration.java index 88e0926da3..b0020e7f1c 100644 --- a/jOOQ/src/main/java/org/jooq/impl/DefaultConfiguration.java +++ b/jOOQ/src/main/java/org/jooq/impl/DefaultConfiguration.java @@ -51,9 +51,9 @@ final class DefaultConfiguration implements Configuration { /** * Generated UID */ - private static final long serialVersionUID = -5746537675969065088L; + private static final long serialVersionUID = -5746537675969065088L; - static final Configuration DEFAULT_CONFIGURATION = new DefaultConfiguration(); + static final Configuration DEFAULT_CONFIGURATION = new DefaultConfiguration(); @SuppressWarnings("deprecation") @Override diff --git a/jOOQ/src/main/java/org/jooq/impl/DeleteImpl.java b/jOOQ/src/main/java/org/jooq/impl/DeleteImpl.java index c045c30b7c..33534d2bf5 100644 --- a/jOOQ/src/main/java/org/jooq/impl/DeleteImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/DeleteImpl.java @@ -39,7 +39,6 @@ import static org.jooq.impl.Factory.condition; import static org.jooq.impl.Factory.exists; import static org.jooq.impl.Factory.notExists; -import java.sql.SQLException; import java.util.Collection; import org.jooq.Condition; @@ -50,7 +49,6 @@ import org.jooq.Operator; import org.jooq.Select; import org.jooq.Table; import org.jooq.TableRecord; -import org.jooq.exception.DetachedException; /** * @author Lukas Eder @@ -73,7 +71,7 @@ class DeleteImpl> } @Override - public final int execute() throws SQLException, DetachedException { + public final int execute() { return getDelegate().execute(); } diff --git a/jOOQ/src/main/java/org/jooq/impl/DeleteQueryImpl.java b/jOOQ/src/main/java/org/jooq/impl/DeleteQueryImpl.java index f6290ae787..ad187f92bf 100644 --- a/jOOQ/src/main/java/org/jooq/impl/DeleteQueryImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/DeleteQueryImpl.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.Collection; import java.util.List; @@ -73,7 +72,7 @@ class DeleteQueryImpl extends AbstractQuery implements DeleteQ } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(getFrom()).bind(getWhere()); } diff --git a/jOOQ/src/main/java/org/jooq/impl/Dual.java b/jOOQ/src/main/java/org/jooq/impl/Dual.java index acd22b6162..10f2b89e09 100644 --- a/jOOQ/src/main/java/org/jooq/impl/Dual.java +++ b/jOOQ/src/main/java/org/jooq/impl/Dual.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.Collections; import java.util.List; @@ -58,7 +57,6 @@ class Dual extends AbstractTable { super("dual", (Schema) null); } - @SuppressWarnings("deprecation") @Override public final Class getRecordType() { return RecordImpl.class; @@ -105,7 +103,7 @@ class Dual extends AbstractTable { } @Override - public final void bind(BindContext context) throws SQLException {} + public final void bind(BindContext context) {} @Override protected final FieldList getFieldList() { diff --git a/jOOQ/src/main/java/org/jooq/impl/Expression.java b/jOOQ/src/main/java/org/jooq/impl/Expression.java index 98d87eb215..405542254c 100644 --- a/jOOQ/src/main/java/org/jooq/impl/Expression.java +++ b/jOOQ/src/main/java/org/jooq/impl/Expression.java @@ -58,7 +58,6 @@ import static org.jooq.impl.Factory.function; import static org.jooq.impl.Factory.literal; import static org.jooq.impl.Factory.power; -import java.sql.SQLException; import java.util.Arrays; import java.util.List; @@ -214,7 +213,7 @@ class Expression extends AbstractFunction { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(lhs).bind((QueryPart) rhs); } diff --git a/jOOQ/src/main/java/org/jooq/impl/Extract.java b/jOOQ/src/main/java/org/jooq/impl/Extract.java index b88e8e7d16..6c18cf8e14 100644 --- a/jOOQ/src/main/java/org/jooq/impl/Extract.java +++ b/jOOQ/src/main/java/org/jooq/impl/Extract.java @@ -40,7 +40,6 @@ import static org.jooq.impl.Factory.field; import static org.jooq.impl.Factory.function; import static org.jooq.impl.Factory.val; -import java.sql.SQLException; import java.util.List; import org.jooq.Attachable; @@ -194,7 +193,7 @@ class Extract extends AbstractFunction { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(field); } } diff --git a/jOOQ/src/main/java/org/jooq/impl/Factory.java b/jOOQ/src/main/java/org/jooq/impl/Factory.java index f8e5b73a4a..2a94f31f74 100644 --- a/jOOQ/src/main/java/org/jooq/impl/Factory.java +++ b/jOOQ/src/main/java/org/jooq/impl/Factory.java @@ -47,7 +47,6 @@ import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.ResultSetMetaData; import java.sql.SQLException; -import java.sql.Statement; import java.sql.Time; import java.sql.Timestamp; import java.util.Arrays; @@ -67,9 +66,9 @@ import org.jooq.ConfigurationRegistry; import org.jooq.DataType; import org.jooq.DeleteQuery; import org.jooq.DeleteWhereStep; +import org.jooq.FactoryOperations; import org.jooq.Field; import org.jooq.FieldProvider; -import org.jooq.Identity; import org.jooq.Insert; import org.jooq.InsertQuery; import org.jooq.InsertSetStep; @@ -78,7 +77,6 @@ import org.jooq.LoaderOptionsStep; import org.jooq.MergeUsingStep; import org.jooq.Query; import org.jooq.QueryPart; -import org.jooq.QueryPartInternal; import org.jooq.Record; import org.jooq.RenderContext; import org.jooq.Result; @@ -100,7 +98,7 @@ import org.jooq.UDTRecord; import org.jooq.UpdateQuery; import org.jooq.UpdateSetStep; import org.jooq.WindowPartitionByStep; -import org.jooq.exception.DetachedException; +import org.jooq.exception.DataAccessException; /** * A factory providing implementations to the org.jooq interfaces @@ -111,7 +109,7 @@ import org.jooq.exception.DetachedException; * representing a constant value, you can write: *

      *

      - * Field<String> field = new Factory().val("Hello World")
      + * Field<String> field = Factory.val("Hello World")
        * 
      *

      * Also, some SQL clauses cannot be expressed easily with DSL, for instance the @@ -119,7 +117,7 @@ import org.jooq.exception.DetachedException; * should write *

      *

      - * Condition condition = new Factory().exists(new Factory().select(...));
      + * Condition condition = Factory.exists(new Factory().select(...));
        * 
      *

      * A Factory holds a reference to a JDBC {@link Connection} and @@ -128,8 +126,7 @@ import org.jooq.exception.DetachedException; * * @author Lukas Eder */ -@SuppressWarnings("deprecation") -public class Factory implements Configuration { +public class Factory implements FactoryOperations { /** * Generated UID @@ -223,27 +220,17 @@ public class Factory implements Configuration { } /** - * Render a QueryPart in the context of this factory - *

      - * This is the same as calling renderContext().render(part) - * - * @param part The {@link QueryPart} to be rendered - * @return The rendered SQL + * {@inheritDoc} */ + @Override public final String render(QueryPart part) { return renderContext().render(part); } /** - * Render a QueryPart in the context of this factory, inlining all bind - * variables. - *

      - * This is the same as calling - * renderContext().inline(true).render(part) - * - * @param part The {@link QueryPart} to be rendered - * @return The rendered SQL + * {@inheritDoc} */ + @Override public final String renderInlined(QueryPart part) { return renderContext().inline(true).render(part); } @@ -274,7 +261,7 @@ public class Factory implements Configuration { *

      * RenderContext for JOOQ INTERNAL USE only. Avoid referencing it directly */ - public final int bind(QueryPart part, PreparedStatement stmt) throws SQLException { + public final int bind(QueryPart part, PreparedStatement stmt) { return bindContext(stmt).bind(part).peekIndex(); } @@ -283,15 +270,17 @@ public class Factory implements Configuration { // ------------------------------------------------------------------------- /** - * Attach this Factory to some attachables + * {@inheritDoc} */ + @Override public final void attach(Attachable... attachables) { attach(Arrays.asList(attachables)); } /** - * Attach this Factory to some attachables + * {@inheritDoc} */ + @Override public final void attach(Collection attachables) { for (Attachable attachable : attachables) { attachable.attach(this); @@ -303,9 +292,9 @@ public class Factory implements Configuration { // ------------------------------------------------------------------------- /** - * Create a new Loader object to load data from a CSV or XML - * source + * {@inheritDoc} */ + @Override public final > LoaderOptionsStep loadInto(Table table) { return new LoaderImpl(this, table); } @@ -718,191 +707,66 @@ public class Factory implements Configuration { } /** - * Create a new query holding plain SQL. There must not be any binding - * variables contained in the SQL - *

      - * Example: - *

      - *

      -     * String sql = "SET SCHEMA 'abc'";
      - *

      - * 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! - * - * @param sql The SQL - * @return A query wrapping the plain SQL + * {@inheritDoc} */ + @Override public final Query query(String sql) { return query(sql, new Object[0]); } /** - * Create a new query holding plain SQL. There must be as many binding - * variables contained in the SQL, as passed in the bindings parameter - *

      - * Example: - *

      - *

      -     * String sql = "SET SCHEMA 'abc'";
      - *

      - * 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! - * - * @param sql The SQL - * @param bindings The bindings - * @return A query wrapping the plain SQL + * {@inheritDoc} */ + @Override public final Query query(String sql, Object... bindings) { return new SQLQuery(this, sql, bindings); } /** - * Execute a new query holding plain SQL. - *

      - * Example (Postgres): - *

      - *

      -     * String sql = "FETCH ALL IN \"\"";
      - * Example (SQLite): - *

      - *

      -     * String sql = "pragma table_info('my_table')";
      - *

      - * 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! - * - * @param sql The SQL - * @return The results from the executed query + * {@inheritDoc} */ - public final Result fetch(String sql) throws SQLException { + @Override + public final Result fetch(String sql) { return fetch(sql, new Object[0]); } /** - * Execute a new query holding plain SQL. There must be as many binding - * variables contained in the SQL, as passed in the bindings parameter - *

      - * Example (Postgres): - *

      - *

      -     * String sql = "FETCH ALL IN \"\"";
      - * Example (SQLite): - *

      - *

      -     * String sql = "pragma table_info('my_table')";
      - *

      - * 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! - * - * @param sql The SQL - * @param bindings The bindings - * @return A query wrapping the plain SQL + * {@inheritDoc} */ - public final Result fetch(String sql, Object... bindings) throws SQLException { + @Override + public final Result fetch(String sql, Object... bindings) { return new SQLResultQuery(this, sql, bindings).fetch(); } /** - * Execute a new query holding plain SQL, possibly returning several result - * sets - *

      - * Example (Sybase ASE): - *

      - *

      -     * String sql = "sp_help 'my_table'";
      - *

      - * 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! - * - * @param sql The SQL - * @return The results from the executed query + * {@inheritDoc} */ - public final List> fetchMany(String sql) throws SQLException { + @Override + public final List> fetchMany(String sql) { return fetchMany(sql, new Object[0]); } /** - * Execute a new query holding plain SQL, possibly returning several result - * sets. There must be as many binding variables contained in the SQL, as - * passed in the bindings parameter - *

      - * Example (Sybase ASE): - *

      - *

      -     * String sql = "sp_help 'my_table'";
      - *

      - * 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! - * - * @param sql The SQL - * @param bindings The bindings - * @return A query wrapping the plain SQL + * {@inheritDoc} */ - public final List> fetchMany(String sql, Object... bindings) throws SQLException { + @Override + public final List> fetchMany(String sql, Object... bindings) { return new SQLResultQuery(this, sql, bindings).fetchMany(); } /** - * Execute a new query holding plain SQL. - *

      - * Example (Postgres): - *

      - *

      -     * String sql = "FETCH ALL IN \"\"";
      - * Example (SQLite): - *

      - *

      -     * String sql = "pragma table_info('my_table')";
      - *

      - * 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! - * - * @param sql The SQL - * @return The results from the executed query - * @throws SQLException if more than one record was found + * {@inheritDoc} */ - public final Record fetchOne(String sql) throws SQLException { + @Override + public final Record fetchOne(String sql) { return fetchOne(sql, new Object[0]); } /** - * Execute a new query holding plain SQL. There must be as many binding - * variables contained in the SQL, as passed in the bindings parameter - *

      - * Example (Postgres): - *

      - *

      -     * String sql = "FETCH ALL IN \"\"";
      - * Example (SQLite): - *

      - *

      -     * String sql = "pragma table_info('my_table')";
      - *

      - * 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! - * - * @param sql The SQL - * @param bindings The bindings - * @return A query wrapping the plain SQL - * @throws SQLException if more than one record was found + * {@inheritDoc} */ - public final Record fetchOne(String sql, Object... bindings) throws SQLException { + @Override + public final Record fetchOne(String sql, Object... bindings) { return new SQLResultQuery(this, sql, bindings).fetchOne(); } @@ -918,9 +782,15 @@ public class Factory implements Configuration { * @param rs The JDBC ResultSet to fetch data from * @return The resulting jOOQ Result */ - public final Result fetch(ResultSet rs) throws SQLException { - FieldProvider fields = new MetaDataFieldProvider(this, rs.getMetaData()); - return new CursorImpl(this, fields, rs).fetchResult(); + @Override + public final Result fetch(ResultSet rs) { + try { + FieldProvider fields = new MetaDataFieldProvider(this, rs.getMetaData()); + return new CursorImpl(this, fields, rs).fetch(); + } + catch (SQLException e) { + throw JooqUtil.translate("Factory.fetch", null, e); + } } // ------------------------------------------------------------------------- @@ -964,415 +834,177 @@ public class Factory implements Configuration { // ------------------------------------------------------------------------- /** - * Create a new DSL select statement - *

      - * Example:

      -     * SELECT * FROM [table] WHERE [conditions] ORDER BY [ordering] LIMIT [limit clause]
      -     * 
      + * {@inheritDoc} */ + @Override public final SimpleSelectWhereStep selectFrom(Table table) { return new SimpleSelectImpl(this, table); } /** - * Create a new DSL select statement. - *

      - * Example:

      -     * Factory create = new Factory();
      -     *
      -     * create.select(field1, field2)
      -     *       .from(table1)
      -     *       .join(table2).on(field1.equal(field2))
      -     *       .where(field1.greaterThan(100))
      -     *       .orderBy(field2)
      -     *       .execute();
      -     * 
      + * {@inheritDoc} */ + @Override public final SelectSelectStep select(Field... fields) { return new SelectImpl(this).select(fields); } /** - * Create a new DSL select statement for constant 0 literal - *

      - * Example:

      -     * Factory create = new Factory();
      -     *
      -     * create.selectZero()
      -     *       .from(table1)
      -     *       .join(table2).on(field1.equal(field2))
      -     *       .where(field1.greaterThan(100))
      -     *       .orderBy(field2)
      -     *       .execute();
      -     * 
      - * - * @see #zero() + * {@inheritDoc} */ + @Override public final SelectSelectStep selectZero() { return new SelectImpl(this).select(zero()); } /** - * Create a new DSL select statement for constant 1 literal - *

      - * Example:

      -     * Factory create = new Factory();
      -     *
      -     * create.selectOne()
      -     *       .from(table1)
      -     *       .join(table2).on(field1.equal(field2))
      -     *       .where(field1.greaterThan(100))
      -     *       .orderBy(field2)
      -     *       .execute();
      -     * 
      - * - * @see #one() + * {@inheritDoc} */ + @Override public final SelectSelectStep selectOne() { return new SelectImpl(this).select(one()); } /** - * Create a new DSL select statement for COUNT(*) - *

      - * Example:

      -     * Factory create = new Factory();
      -     *
      -     * create.selectCount()
      -     *       .from(table1)
      -     *       .join(table2).on(field1.equal(field2))
      -     *       .where(field1.greaterThan(100))
      -     *       .orderBy(field2)
      -     *       .execute();
      -     * 
      - * - * @see #one() + * {@inheritDoc} */ + @Override public final SelectSelectStep selectCount() { return new SelectImpl(this).select(count()); } /** - * Create a new DSL select statement. - *

      - * Example:

      -     * Factory create = new Factory();
      -     *
      -     * create.selectDistinct(field1, field2)
      -     *       .from(table1)
      -     *       .join(table2).on(field1.equal(field2))
      -     *       .where(field1.greaterThan(100))
      -     *       .orderBy(field2);
      -     * 
      + * {@inheritDoc} */ + @Override public final SelectSelectStep selectDistinct(Field... fields) { return new SelectImpl(this, true).select(fields); } /** - * Create a new DSL select statement. - *

      - * Example:

      -     * Factory create = new Factory();
      -     *
      -     * create.select(fields)
      -     *       .from(table1)
      -     *       .join(table2).on(field1.equal(field2))
      -     *       .where(field1.greaterThan(100))
      -     *       .orderBy(field2);
      -     * 
      + * {@inheritDoc} */ + @Override public final SelectSelectStep select(Collection> fields) { return new SelectImpl(this).select(fields); } /** - * Create a new DSL select statement. - *

      - * Example:

      -     * Factory create = new Factory();
      -     *
      -     * create.selectDistinct(fields)
      -     *       .from(table1)
      -     *       .join(table2).on(field1.equal(field2))
      -     *       .where(field1.greaterThan(100))
      -     *       .orderBy(field2);
      -     * 
      + * {@inheritDoc} */ + @Override public final SelectSelectStep selectDistinct(Collection> fields) { return new SelectImpl(this, true).select(fields); } /** - * Create a new {@link SelectQuery} + * {@inheritDoc} */ + @Override public final SelectQuery selectQuery() { return new SelectQueryImpl(this); } /** - * Create a new {@link SelectQuery} - * - * @param table The table to select data from - * @return The new {@link SelectQuery} + * {@inheritDoc} */ + @Override public final SimpleSelectQuery selectQuery(TableLike table) { return new SimpleSelectQueryImpl(this, table); } /** - * Create a new {@link InsertQuery} - * - * @param into The table to insert data into - * @return The new {@link InsertQuery} + * {@inheritDoc} */ + @Override public final > InsertQuery insertQuery(Table into) { return new InsertQueryImpl(this, into); } /** - * Create a new DSL insert statement. This type of insert may feel more - * convenient to some users, as it uses the UPDATE statement's - * SET a = b syntax. - *

      - * Example:

      -     * Factory create = new Factory();
      -     *
      -     * create.insertInto(table)
      -     *       .set(field1, value1)
      -     *       .set(field2, value2)
      -     *       .newRecord()
      -     *       .set(field1, value3)
      -     *       .set(field2, value4)
      -     *       .onDuplicateKeyUpdate()
      -     *       .set(field1, value1)
      -     *       .set(field2, value2)
      -     *       .execute();
      -     * 
      + * {@inheritDoc} */ + @Override public final > InsertSetStep insertInto(Table into) { return new InsertImpl(this, into, Collections.>emptyList()); } /** - * Create a new DSL insert statement. - *

      - * Example:

      -     * Factory create = new Factory();
      -     *
      -     * create.insertInto(table, field1, field2)
      -     *       .values(value1, value2)
      -     *       .values(value3, value4)
      -     *       .onDuplicateKeyUpdate()
      -     *       .set(field1, value1)
      -     *       .set(field2, value2)
      -     *       .execute();
      -     * 
      + * {@inheritDoc} */ + @Override public final > InsertValuesStep insertInto(Table into, Field... fields) { return new InsertImpl(this, into, Arrays.asList(fields)); } /** - * Create a new DSL insert statement. - *

      - * Example:

      -     * Factory create = new Factory();
      -     *
      -     * create.insertInto(table, field1, field2)
      -     *       .values(value1, value2)
      -     *       .values(value3, value4)
      -     *       .onDuplicateKeyUpdate()
      -     *       .set(field1, value1)
      -     *       .set(field2, value2)
      -     *       .execute();
      -     * 
      + * {@inheritDoc} */ + @Override public final > InsertValuesStep insertInto(Table into, Collection> fields) { return new InsertImpl(this, into, fields); } /** - * Create a new DSL insert statement. - *

      - * Example:

      -     * Factory create = new Factory();
      -     *
      -     * create.insertInto(table, create.select(1))
      -     *       .onDuplicateKeyUpdate()
      -     *       .set(field1, value1)
      -     *       .set(field2, value2)
      -     *       .execute();
      -     * 
      + * {@inheritDoc} */ + @Override public final > Insert insertInto(Table into, Select select) { return new InsertSelectQueryImpl(this, into, select); } /** - * Create a new {@link UpdateQuery} - * - * @param table The table to update data into - * @return The new {@link UpdateQuery} + * {@inheritDoc} */ + @Override public final > UpdateQuery updateQuery(Table table) { return new UpdateQueryImpl(this, table); } /** - * Create a new DSL update statement. - *

      - * Example:

      -     * Factory create = new Factory();
      -     *
      -     * create.update(table)
      -     *       .set(field1, value1)
      -     *       .set(field2, value2)
      -     *       .where(field1.greaterThan(100))
      -     *       .execute();
      -     * 
      + * {@inheritDoc} */ + @Override public final > UpdateSetStep update(Table table) { return new UpdateImpl(this, table); } /** - * Create a new DSL merge statement. - *

      - * This statement is available from DSL syntax only. It is known to be - * supported in some way by any of these dialects: - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
      dialectsupport typedocumentation
      DB2SQL:2008 standard and major enhancementshttp://publib.boulder.ibm.com/infocenter/db2luw/v9/index.jsp?topic=/com. - * ibm.db2.udb.admin.doc/doc/r0010873.htm
      HSQLDBSQL:2008 standardhttp://hsqldb.org/doc/2.0/guide/dataaccess-chapt.html#N129BA
      OracleSQL:2008 standard and minor enhancementshttp://download.oracle.com/docs/cd/B28359_01/server.111/b28286/ - * statements_9016.htm
      SQL ServerSimilar to SQL:2008 standard with some major enhancementshttp://msdn.microsoft.com/de-de/library/bb510625.aspx
      SybaseSimilar to SQL:2008 standard with some major enhancementshttp://dcx.sybase.com/1100/en/dbreference_en11/merge-statement.html
      - *

      - * Example:

      -     * Factory create = new Factory();
      -     *
      -     * create.mergeInto(table)
      -     *       .using(select)
      -     *       .on(condition)
      -     *       .whenMatchedThenUpdate()
      -     *       .set(field1, value1)
      -     *       .set(field2, value2)
      -     *       .whenNotMatchedThenInsert(field1, field2)
      -     *       .values(value1, value2)
      -     *       .execute();
      -     * 
      + * {@inheritDoc} */ + @Override public final > MergeUsingStep mergeInto(Table table) { return new MergeImpl(this, table); } /** - * Create a new {@link DeleteQuery} - * - * @param table The table to delete data from - * @return The new {@link DeleteQuery} + * {@inheritDoc} */ + @Override public final > DeleteQuery deleteQuery(Table table) { return new DeleteQueryImpl(this, table); } /** - * Create a new DSL delete statement. - *

      - * Example:

      -     * Factory create = new Factory();
      -     *
      -     * create.delete(table)
      -     *       .where(field1.greaterThan(100))
      -     *       .execute();
      -     * 
      + * {@inheritDoc} */ + @Override public final > DeleteWhereStep delete(Table table) { return new DeleteImpl(this, table); } /** - * Execute a set of queries in batch mode (without bind values). - *

      - * This essentially runs the following logic:

      -     * Statement s = connection.createStatement();
      -     *
      -     * for (Query query : queries) {
      -     *     s.addBatch(renderInlined(query));
      -     * }
      -     *
      -     * s.execute();
      -     * 
      - * - * @see Statement#executeBatch() + * {@inheritDoc} */ + @Override public final Batch batch(Query... queries) { return new BatchMultiple(this, queries); } /** - * Execute a set of queries in batch mode (with bind values). - *

      - * When running

      -     * create.batch(query)
      -     *       .bind(valueA1, valueA2)
      -     *       .bind(valueB1, valueB2)
      -     *       .execute();
      -     * 
      - *

      - * This essentially runs the following logic:

      -     * Statement s = connection.prepareStatement(render(query));
      -     *
      -     * for (Object[] bindValues : allBindValues) {
      -     *     for (Object bindValue : bindValues) {
      -     *         s.setXXX(bindValue);
      -     *     }
      -     *
      -     *     s.addBatch();
      -     * }
      -     *
      -     * s.execute();
      -     * 
      - * - * @see Statement#executeBatch() + * {@inheritDoc} */ + @Override public final BatchBindStep batch(Query query) { return new BatchSingle(this, query); } @@ -1382,18 +1014,9 @@ public class Factory implements Configuration { // ------------------------------------------------------------------------- /** - * Create a new DSL truncate statement. - *

      - * Example:

      -     * Factory create = new Factory();
      -     *
      -     * create.truncate(table)
      -     *       .execute();
      -     * 
      - *

      - * Note, this statement is only supported in DSL mode. Immediate execution - * is omitted for future extensibility of this command. + * {@inheritDoc} */ + @Override public final > Truncate truncate(Table table) { return new TruncateImpl(this, table); } @@ -1403,17 +1026,10 @@ public class Factory implements Configuration { // ------------------------------------------------------------------------- /** - * Retrieve the last inserted ID. - *

      - * This is poorly supported by {@link SQLDialect#SQLITE}
      - * This is NOT supported by {@link SQLDialect#POSTGRES} and - * {@link SQLDialect#ORACLE} - * - * @return The last inserted ID. This may be null in some - * dialects, if no such number is available. - * @see #lastID(Identity) + * {@inheritDoc} */ - public final BigInteger lastID() throws SQLException { + @Override + public final BigInteger lastID() { switch (getDialect()) { case DERBY: { Field field = field("identity_val_local()", BigInteger.class); @@ -1454,110 +1070,33 @@ public class Factory implements Configuration { } /** - * Retrieve the last inserted ID for a given {@link Identity} - *

      - * This executes SELECT max([id.field]) FROM [id.table] - *

      - * This is NOT supported by {@link SQLDialect#ORACLE} - * - * @return The last inserted ID. This may be null in some - * dialects, if no such number is available. - * @deprecated - 1.6.6 - This is not a precise way of fetching generated - * identity values, because it assumes that: - *

        - *
      • identity values are increased by one
      • - * transactional integrity is given (no race conditions - * occurred)
      • - *
      - *

      - * Use INSERT .. RETURNING instead, in - * {@link InsertQuery#getReturned()}, or {@link #lastID()} if - * your RDBMS supports such a clause. + * {@inheritDoc} */ - @Deprecated - public final T lastID(Identity identity) throws SQLException { - return select(max(identity.getField())).from(identity.getTable()).fetchOne(max(identity.getField())); - } - - /** - * Convenience method to fetch the NEXTVAL for a sequence directly from this - * {@link Factory}'s underlying JDBC {@link Connection} - */ - public final T nextval(Sequence sequence) throws SQLException { + @Override + public final T nextval(Sequence sequence) { Field nextval = sequence.nextval(); return select(nextval).fetchOne(nextval); } /** - * Convenience method to fetch the CURRVAL for a sequence directly from this - * {@link Factory}'s underlying JDBC {@link Connection} + * {@inheritDoc} */ - public final T currval(Sequence sequence) throws SQLException { + @Override + public final T currval(Sequence sequence) { Field currval = sequence.currval(); return select(currval).fetchOne(currval); } /** - * Use a schema as the default schema of the underlying connection. - *

      - * This has two effects. - *

        - *
      1. The USE [schema] statement is executed on those RDBMS - * that support this
      2. - *
      3. The supplied {@link Schema} is used as the default schema resulting - * in omitting that schema in rendered SQL.
      4. - *
      - *

      - * The USE [schema] statement translates to the various - * dialects as follows: - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - * - *
      DialectCommand
      DB2SET SCHEMA [schema]
      Derby:SET SCHEMA [schema]
      H2:SET SCHEMA [schema]
      HSQLDB:SET SCHEMA [schema]
      MySQL:USE [schema]
      Oracle:ALTER SESSION SET CURRENT_SCHEMA = [schema]
      Postgres:SET SEARCH_PATH = [schema]
      Sybase:USE [schema]
      - * - * @throws SQLException - * @throws DetachedException + * {@inheritDoc} */ - public final int use(Schema schema) throws DetachedException, SQLException { + @Override + public final int use(Schema schema) { int result = 0; // SQL Server does not support such a syntax try { - String schemaName = schema.internalAPI(QueryPartInternal.class).toSQLReference(this, false); + String schemaName = render(schema); switch (dialect) { case DB2: @@ -1589,11 +1128,10 @@ public class Factory implements Configuration { } /** - * Use a schema as the default schema of the underlying connection. - * - * @see #use(Schema) + * {@inheritDoc} */ - public final int use(String schema) throws DetachedException, SQLException { + @Override + public final int use(String schema) { return use(new SchemaImpl(schema)); } @@ -1602,13 +1140,9 @@ public class Factory implements Configuration { // ------------------------------------------------------------------------- /** - * Create a new {@link Record} that can be inserted into the corresponding - * table. - * - * @param The generic record type - * @param table The table holding records of type - * @return The new record + * {@inheritDoc} */ + @Override public final R newRecord(Table table) { return JooqUtil.newRecord(table, this); } @@ -1865,7 +1399,7 @@ public class Factory implements Configuration { * href="http://msdn.microsoft.com/en-US/library/bb522495.aspx" * >http://msdn.microsoft.com/en-US/library/bb522495.aspx * - * @param fields The fields that are part of the GROUPING SETS + * @param fieldSets The fields that are part of the GROUPING SETS * function * @return A field to be used in a GROUP BY clause */ @@ -1898,7 +1432,7 @@ public class Factory implements Configuration { * href="http://msdn.microsoft.com/en-US/library/bb522495.aspx" * >http://msdn.microsoft.com/en-US/library/bb522495.aspx * - * @param fields The fields that are part of the GROUPING SETS + * @param fieldSets The fields that are part of the GROUPING SETS * function * @return A field to be used in a GROUP BY clause */ @@ -2566,7 +2100,6 @@ public class Factory implements Configuration { return new Radians(field); } - // ------------------------------------------------------------------------- // Aggregate functions // ------------------------------------------------------------------------- @@ -2796,110 +2329,6 @@ public class Factory implements Configuration { // Bind values // ------------------------------------------------------------------------- - /** - * Get a constant value - *

      - * This will be deprecated in the near future, for its verbosity. Use - * {@link #val(Object, DataType)} instead. - *

      - * jOOQ tries to derive the RDBMS {@link DataType} from the provided Java - * type <T>. This may not always be accurate, which can - * lead to problems in some strongly typed RDMBS (namely: - * {@link SQLDialect#DERBY}, {@link SQLDialect#DB2}, {@link SQLDialect#H2}, - * {@link SQLDialect#HSQLDB}), especially when value is null. - *

      - * If you need more type-safety, please use - * {@link #constant(Object, DataType)} instead, and provide the precise - * RDMBS-specific data type, that is needed. - * - * @param The generic value type - * @param value The constant value - * @return A field representing the constant value - * @deprecated - 1.6.3 [#757] - Use {@link #val(Object)} instead. - */ - @Deprecated - public static Field constant(T value) { - return val(value); - } - - /** - * Get a constant value with an associated type, taken from a field - *

      - * This will be deprecated in the near future, for its verbosity. Use - * {@link #val(Object, DataType)} instead. - * - * @param The generic value type - * @param value The constant value - * @param type The data type to enforce upon the value - * @return A field representing the constant value - * @see #constant(Object, DataType) - * @deprecated - 1.6.3 [#757] - Use {@link #val(Object, Class)} instead. - */ - @Deprecated - public static Field constant(Object value, Class type) { - return val(value, type); - } - - /** - * Get a constant value with an associated type, taken from a field - *

      - * This will be deprecated in the near future, for its verbosity. Use - * {@link #val(Object, DataType)} instead. - * - * @param The generic value type - * @param value The constant value - * @param field The field whose data type to enforce upon the value - * @return A field representing the constant value - * @see #constant(Object, DataType) - * @deprecated - 1.6.3 [#757] - Use {@link #val(Object, Field)} instead. - */ - @Deprecated - public static Field constant(Object value, Field field) { - return val(value, field); - } - - /** - * Get a constant value with an associated type - *

      - * This will be deprecated in the near future, for its verbosity. Use - * {@link #val(Object, DataType)} instead. - *

      - * This will try to bind value as type in a - * PreparedStatement. If value and - * type are not compatible, jOOQ will first try to convert and - * then to cast value to type. - * - * @param The generic value type - * @param value The constant value - * @param type The data type to enforce upon the value - * @return A field representing the constant value - * @deprecated - 1.6.3 [#757] - Use {@link #val(Object, DataType)} instead. - */ - @Deprecated - public static Field constant(Object value, DataType type) { - return val(value, type); - } - - /** - * Get a list of constant values and fields - * - * @deprecated - 1.6.3 - This method causes issues when overloading. Use - * {@link #constants(Object...)} instead - */ - @Deprecated - public static List> constant(Object... values) { - return constants(values); - } - - /** - * Get a list of constant values and fields - * @deprecated - 1.6.3 [#757] - Use {@link #vals(Object...)} instead. - */ - @Deprecated - public static List> constants(Object... values) { - return vals(values); - } - /** * Get a value *

      @@ -2910,7 +2339,7 @@ public class Factory implements Configuration { * {@link SQLDialect#HSQLDB}), especially when value is null. *

      * If you need more type-safety, please use - * {@link #constant(Object, DataType)} instead, and provide the precise + * {@link #val(Object, DataType)} instead, and provide the precise * RDMBS-specific data type, that is needed. * * @param The generic value type @@ -2943,7 +2372,7 @@ public class Factory implements Configuration { * @param value The constant value * @param type The data type to enforce upon the value * @return A field representing the constant value - * @see #constant(Object, DataType) + * @see #val(Object, DataType) */ public static Field val(Object value, Class type) { return val(value, getDataType(type)); @@ -2956,7 +2385,7 @@ public class Factory implements Configuration { * @param value The constant value * @param field The field whose data type to enforce upon the value * @return A field representing the constant value - * @see #constant(Object, DataType) + * @see #val(Object, DataType) */ public static Field val(Object value, Field field) { return val(value, field.getDataType()); @@ -3222,83 +2651,68 @@ public class Factory implements Configuration { // ------------------------------------------------------------------------- /** - * Execute and return all records for - *

      SELECT * FROM [table]
      + * {@inheritDoc} */ - public final Result fetch(Table table) throws SQLException { + @Override + public final Result fetch(Table table) { return fetch(table, trueCondition()); } /** - * Execute and return all records for - *
      SELECT * FROM [table] WHERE [condition] 
      + * {@inheritDoc} */ - public final Result fetch(Table table, Condition condition) throws SQLException { + @Override + public final Result fetch(Table table, Condition condition) { return selectFrom(table).where(condition).fetch(); } /** - * Execute and return zero or one record for - *
      SELECT * FROM [table]
      - * - * @return The record or null if no record was returned - * @throws SQLException if more than one record was found + * {@inheritDoc} */ - public final R fetchOne(Table table) throws SQLException { + @Override + public final R fetchOne(Table table) { return filterOne(fetch(table)); } /** - * Execute and return zero or one record for - *
      SELECT * FROM [table] WHERE [condition] 
      - * - * @return The record or null if no record was returned - * @throws SQLException if more than one record was found + * {@inheritDoc} */ - public final R fetchOne(Table table, Condition condition) throws SQLException { + @Override + public final R fetchOne(Table table, Condition condition) { return filterOne(fetch(table, condition)); } /** - * Execute and return zero or one record for - *
      SELECT * FROM [table] LIMIT 1
      - * - * @return The record or null if no record was returned + * {@inheritDoc} */ - public final R fetchAny(Table table) throws SQLException { + @Override + public final R fetchAny(Table table) { return filterOne(selectFrom(table).limit(1).fetch()); } /** - * Insert one record - *
      INSERT INTO [table] ... VALUES [record] 
      - * - * @return The number of inserted records + * {@inheritDoc} */ - public final > int executeInsert(Table table, R record) throws SQLException { + @Override + public final > int executeInsert(Table table, R record) { InsertQuery insert = insertQuery(table); insert.setRecord(record); return insert.execute(); } /** - * Update a table - *
      UPDATE [table] SET [modified values in record] 
      - * - * @return The number of updated records + * {@inheritDoc} */ - public final > int executeUpdate(Table table, R record) throws SQLException { + @Override + public final > int executeUpdate(Table table, R record) { return executeUpdate(table, record, trueCondition()); } /** - * Update a table - *
      UPDATE [table] SET [modified values in record] WHERE [condition]
      - * - * @return The number of updated records + * {@inheritDoc} */ - public final , T> int executeUpdate(Table table, R record, Condition condition) - throws SQLException { + @Override + public final , T> int executeUpdate(Table table, R record, Condition condition) { UpdateQuery update = updateQuery(table); update.addConditions(condition); update.setRecord(record); @@ -3306,69 +2720,53 @@ public class Factory implements Configuration { } /** - * Update one record in a table - *
      UPDATE [table] SET [modified values in record]
      - * - * @return The number of updated records - * @throws SQLException if more than one record was updated + * {@inheritDoc} */ - public final > int executeUpdateOne(Table table, R record) throws SQLException { + @Override + public final > int executeUpdateOne(Table table, R record) { return filterUpdateOne(executeUpdate(table, record)); } /** - * Update one record in a table - *
      UPDATE [table] SET [modified values in record] WHERE [condition]
      - * - * @return The number of updated records - * @throws SQLException if more than one record was updated + * {@inheritDoc} */ - public final , T> int executeUpdateOne(Table table, R record, Condition condition) - throws SQLException { + @Override + public final , T> int executeUpdateOne(Table table, R record, Condition condition) { return filterUpdateOne(executeUpdate(table, record, condition)); } /** - * Delete records from a table
      DELETE FROM [table]
      - * - * @return The number of deleted records + * {@inheritDoc} */ - public final > int executeDelete(Table table) throws SQLException { + @Override + public final > int executeDelete(Table table) { return executeDelete(table, trueCondition()); } /** - * Delete records from a table - *
      DELETE FROM [table] WHERE [condition]
      - * - * @return The number of deleted records + * {@inheritDoc} */ + @Override public final , T> int executeDelete(Table table, Condition condition) - throws SQLException { + { DeleteQuery delete = deleteQuery(table); delete.addConditions(condition); return delete.execute(); } /** - * Delete one record in a table
      DELETE FROM [table]
      - * - * @return The number of deleted records - * @throws SQLException if more than one record was deleted + * {@inheritDoc} */ - public final > int executeDeleteOne(Table table) throws SQLException { + @Override + public final > int executeDeleteOne(Table table) { return executeDeleteOne(table, trueCondition()); } /** - * Delete one record in a table - *
      DELETE FROM [table] WHERE [condition]
      - * - * @return The number of deleted records - * @throws SQLException if more than one record was deleted + * {@inheritDoc} */ - public final , T> int executeDeleteOne(Table table, Condition condition) - throws SQLException { + @Override + public final , T> int executeDeleteOne(Table table, Condition condition) { DeleteQuery delete = deleteQuery(table); delete.addConditions(condition); return filterDeleteOne(delete.execute()); @@ -3385,6 +2783,7 @@ public class Factory implements Configuration { * @param type The Java type * @return The Factory's underlying default data type. */ + @SuppressWarnings("deprecation") public static DataType getDataType(Class type) { return FieldTypeHelper.getDataType(SQLDialect.SQL99, type); } @@ -3406,24 +2805,24 @@ public class Factory implements Configuration { // Internals // ------------------------------------------------------------------------- - private static int filterDeleteOne(int i) throws SQLException { + private static int filterDeleteOne(int i) { return filterOne(i, "deleted"); } - private static int filterUpdateOne(int i) throws SQLException { + private static int filterUpdateOne(int i) { return filterOne(i, "updated"); } - private static int filterOne(int i, String action) throws SQLException { + private static int filterOne(int i, String action) { if (i <= 1) { return i; } else { - throw new SQLException("Too many rows " + action + " : " + i); + throw new DataAccessException("Too many rows " + action + " : " + i); } } - private static R filterOne(List list) throws SQLException { + private static R filterOne(List list) { if (list.size() == 0) { return null; } @@ -3431,7 +2830,7 @@ public class Factory implements Configuration { return list.get(0); } else { - throw new SQLException("Too many rows returned : " + list.size()); + throw new DataAccessException("Too many rows returned : " + list.size()); } } diff --git a/jOOQ/src/main/java/org/jooq/impl/FalseCondition.java b/jOOQ/src/main/java/org/jooq/impl/FalseCondition.java index f85b3d7c41..0b74595b4b 100644 --- a/jOOQ/src/main/java/org/jooq/impl/FalseCondition.java +++ b/jOOQ/src/main/java/org/jooq/impl/FalseCondition.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.Collections; import java.util.List; @@ -52,7 +51,7 @@ class FalseCondition extends AbstractCondition { private static final long serialVersionUID = -3972466479081463547L; @Override - public void bind(BindContext context) throws SQLException {} + public void bind(BindContext context) {} @Override public final void toSQL(RenderContext context) { diff --git a/jOOQ/src/main/java/org/jooq/impl/FieldAlias.java b/jOOQ/src/main/java/org/jooq/impl/FieldAlias.java index e4997ceda3..e9f86036d8 100644 --- a/jOOQ/src/main/java/org/jooq/impl/FieldAlias.java +++ b/jOOQ/src/main/java/org/jooq/impl/FieldAlias.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.List; import org.jooq.Attachable; @@ -70,7 +69,7 @@ class FieldAlias extends AbstractField { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(aliasProvider); } diff --git a/jOOQ/src/main/java/org/jooq/impl/FieldMapForInsert.java b/jOOQ/src/main/java/org/jooq/impl/FieldMapForInsert.java index 1f1a488f66..3604a27ce2 100644 --- a/jOOQ/src/main/java/org/jooq/impl/FieldMapForInsert.java +++ b/jOOQ/src/main/java/org/jooq/impl/FieldMapForInsert.java @@ -37,7 +37,6 @@ package org.jooq.impl; import static org.jooq.impl.Factory.val; -import java.sql.SQLException; import java.util.Collection; import java.util.Iterator; import java.util.Map; @@ -95,7 +94,7 @@ class FieldMapForInsert extends AbstractQueryPartMap, Field> { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(keySet()).bind(values()); } diff --git a/jOOQ/src/main/java/org/jooq/impl/FieldMapForUpdate.java b/jOOQ/src/main/java/org/jooq/impl/FieldMapForUpdate.java index 6be0ada352..90116ab0d6 100644 --- a/jOOQ/src/main/java/org/jooq/impl/FieldMapForUpdate.java +++ b/jOOQ/src/main/java/org/jooq/impl/FieldMapForUpdate.java @@ -37,7 +37,6 @@ package org.jooq.impl; import static org.jooq.impl.Factory.val; -import java.sql.SQLException; import java.util.Map; import org.jooq.BindContext; @@ -77,7 +76,7 @@ class FieldMapForUpdate extends AbstractQueryPartMap, Field> { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { for (Entry, Field> entry : entrySet()) { context.bind(entry.getKey()); context.bind(entry.getValue()); diff --git a/jOOQ/src/main/java/org/jooq/impl/FieldMapsForInsert.java b/jOOQ/src/main/java/org/jooq/impl/FieldMapsForInsert.java index 1d9ac44e44..81bdc1c2e3 100644 --- a/jOOQ/src/main/java/org/jooq/impl/FieldMapsForInsert.java +++ b/jOOQ/src/main/java/org/jooq/impl/FieldMapsForInsert.java @@ -35,7 +35,6 @@ */ package org.jooq.impl; -import java.sql.SQLException; import java.util.ArrayList; import java.util.List; @@ -137,7 +136,7 @@ class FieldMapsForInsert extends AbstractQueryPart { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(insertMaps); } diff --git a/jOOQ/src/main/java/org/jooq/impl/Function.java b/jOOQ/src/main/java/org/jooq/impl/Function.java index 0f5ca4b2a3..63d5f1bf8e 100644 --- a/jOOQ/src/main/java/org/jooq/impl/Function.java +++ b/jOOQ/src/main/java/org/jooq/impl/Function.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.Arrays; import java.util.List; @@ -158,7 +157,7 @@ class Function extends AbstractField { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(arguments); } diff --git a/jOOQ/src/main/java/org/jooq/impl/FunctionTable.java b/jOOQ/src/main/java/org/jooq/impl/FunctionTable.java index 593d427af1..2197ef5851 100644 --- a/jOOQ/src/main/java/org/jooq/impl/FunctionTable.java +++ b/jOOQ/src/main/java/org/jooq/impl/FunctionTable.java @@ -35,7 +35,6 @@ */ package org.jooq.impl; -import java.sql.SQLException; import java.util.Collections; import java.util.List; @@ -65,7 +64,7 @@ class FunctionTable extends AbstractTable { this.function = function; } - @SuppressWarnings({ "unchecked", "deprecation" }) + @SuppressWarnings("unchecked") @Override public final Class getRecordType() { return (Class) RecordImpl.class; @@ -90,7 +89,7 @@ class FunctionTable extends AbstractTable { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { switch (context.getDialect()) { case HSQLDB: context.bind(function); diff --git a/jOOQ/src/main/java/org/jooq/impl/InCondition.java b/jOOQ/src/main/java/org/jooq/impl/InCondition.java index c5ee077826..0b6b5b6075 100644 --- a/jOOQ/src/main/java/org/jooq/impl/InCondition.java +++ b/jOOQ/src/main/java/org/jooq/impl/InCondition.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.ArrayList; import java.util.Arrays; import java.util.List; @@ -75,7 +74,7 @@ class InCondition extends AbstractCondition { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(field).bind(values); } diff --git a/jOOQ/src/main/java/org/jooq/impl/InsertImpl.java b/jOOQ/src/main/java/org/jooq/impl/InsertImpl.java index 122021d366..14f61247f7 100644 --- a/jOOQ/src/main/java/org/jooq/impl/InsertImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/InsertImpl.java @@ -37,7 +37,6 @@ package org.jooq.impl; import static org.jooq.impl.Factory.vals; -import java.sql.SQLException; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; @@ -55,7 +54,6 @@ import org.jooq.InsertValuesStep; import org.jooq.Result; import org.jooq.Table; import org.jooq.TableRecord; -import org.jooq.exception.DetachedException; /** * @author Lukas Eder @@ -91,7 +89,7 @@ class InsertImpl> // ------------------------------------------------------------------------- @Override - public final int execute() throws SQLException, DetachedException { + public final int execute() { return getDelegate().execute(); } @@ -202,13 +200,13 @@ class InsertImpl> } @Override - public final Result fetch() throws SQLException { + public final Result fetch() { getDelegate().execute(); return getDelegate().getReturnedRecords(); } @Override - public final TableRecord fetchOne() throws SQLException { + public final TableRecord fetchOne() { getDelegate().execute(); return getDelegate().getReturnedRecord(); } diff --git a/jOOQ/src/main/java/org/jooq/impl/InsertQueryImpl.java b/jOOQ/src/main/java/org/jooq/impl/InsertQueryImpl.java index 590e630103..0b3d236bf0 100644 --- a/jOOQ/src/main/java/org/jooq/impl/InsertQueryImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/InsertQueryImpl.java @@ -191,7 +191,7 @@ class InsertQueryImpl> extends AbstractStoreQuery im } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { if (!onDuplicateKeyUpdate) { bindInsert(context); } @@ -248,7 +248,7 @@ class InsertQueryImpl> extends AbstractStoreQuery im } } - private final void bindInsert(BindContext context) throws SQLException { + private final void bindInsert(BindContext context) { context.bind(getInto()) .bind(insertMaps) .bind(updateMap); @@ -445,7 +445,7 @@ class InsertQueryImpl> extends AbstractStoreQuery im } CursorImpl cursor = new CursorImpl(configuration, returning, rs, statement, getInto().getRecordType()); - returned = cursor.fetchResult(); + returned = cursor.fetch(); return result; } } @@ -455,7 +455,7 @@ class InsertQueryImpl> extends AbstractStoreQuery im * arbitrary fields from JDBC's {@link Statement#getGeneratedKeys()} method. */ @SuppressWarnings("unchecked") - private final void selectReturning(Configuration configuration, Object... values) throws SQLException { + private final void selectReturning(Configuration configuration, Object... values) { if (getInto() instanceof UpdatableTable) { UpdatableTable updatable = (UpdatableTable) getInto(); @@ -527,12 +527,6 @@ class InsertQueryImpl> extends AbstractStoreQuery im returning.addAll(fields); } - @Override - @Deprecated - public final R getReturned() { - return getReturnedRecord(); - } - @Override public final R getReturnedRecord() { if (getReturnedRecords().size() == 0) { diff --git a/jOOQ/src/main/java/org/jooq/impl/InsertSelectQueryImpl.java b/jOOQ/src/main/java/org/jooq/impl/InsertSelectQueryImpl.java index 25375b4b51..fd1af1715d 100644 --- a/jOOQ/src/main/java/org/jooq/impl/InsertSelectQueryImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/InsertSelectQueryImpl.java @@ -35,7 +35,6 @@ */ package org.jooq.impl; -import java.sql.SQLException; import java.util.List; import org.jooq.Attachable; @@ -87,7 +86,7 @@ class InsertSelectQueryImpl> extends AbstractQuery impl } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(into); context.bind(into.getFields()); context.bind(select); diff --git a/jOOQ/src/main/java/org/jooq/impl/Join.java b/jOOQ/src/main/java/org/jooq/impl/Join.java index e890315541..ca53b7c922 100644 --- a/jOOQ/src/main/java/org/jooq/impl/Join.java +++ b/jOOQ/src/main/java/org/jooq/impl/Join.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.Collection; import java.util.List; @@ -89,7 +88,7 @@ class Join extends AbstractQueryPart { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(getTable()); if (usingSyntax) { diff --git a/jOOQ/src/main/java/org/jooq/impl/JooqUtil.java b/jOOQ/src/main/java/org/jooq/impl/JooqUtil.java index f49888fd0d..de4a047ca5 100644 --- a/jOOQ/src/main/java/org/jooq/impl/JooqUtil.java +++ b/jOOQ/src/main/java/org/jooq/impl/JooqUtil.java @@ -38,6 +38,7 @@ package org.jooq.impl; import java.lang.reflect.Method; import java.sql.PreparedStatement; import java.sql.ResultSet; +import java.sql.SQLException; import java.sql.Statement; import java.util.ArrayList; import java.util.Collection; @@ -54,6 +55,7 @@ import org.jooq.NamedQueryPart; import org.jooq.Record; import org.jooq.RenderContext; import org.jooq.Table; +import org.jooq.exception.DataAccessException; /** * General jooq utilities @@ -114,7 +116,7 @@ final class JooqUtil { /** * Create a new record */ - @SuppressWarnings({ "unchecked", "deprecation" }) + @SuppressWarnings("unchecked") static R newRecord(Class type, FieldProvider provider, Configuration configuration) { try { R result; @@ -230,6 +232,14 @@ final class JooqUtil { return result; } + /** + * Translate a {@link SQLException} to a {@link DataAccessException} + */ + static DataAccessException translate(String task, String sql, SQLException e) { + String message = task + "; SQL [" + sql + "]; " + e.getMessage(); + return new DataAccessException(message, e); + } + /** * Safely close a statement */ diff --git a/jOOQ/src/main/java/org/jooq/impl/Limit.java b/jOOQ/src/main/java/org/jooq/impl/Limit.java index 4474fd024c..fda7e55427 100644 --- a/jOOQ/src/main/java/org/jooq/impl/Limit.java +++ b/jOOQ/src/main/java/org/jooq/impl/Limit.java @@ -37,7 +37,6 @@ package org.jooq.impl; import static org.jooq.impl.Factory.val; -import java.sql.SQLException; import java.util.Collections; import java.util.List; @@ -190,7 +189,7 @@ class Limit extends AbstractQueryPart { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { switch (context.getDialect()) { // OFFSET .. LIMIT support provided by the following dialects diff --git a/jOOQ/src/main/java/org/jooq/impl/LoaderErrorImpl.java b/jOOQ/src/main/java/org/jooq/impl/LoaderErrorImpl.java index 14d0dcb99f..ed0a6e4912 100644 --- a/jOOQ/src/main/java/org/jooq/impl/LoaderErrorImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/LoaderErrorImpl.java @@ -35,22 +35,21 @@ */ package org.jooq.impl; -import java.sql.SQLException; - import org.jooq.LoaderError; import org.jooq.Query; +import org.jooq.exception.DataAccessException; /** * @author Lukas Eder */ class LoaderErrorImpl implements LoaderError { - private final SQLException exception; - private final int rowIndex; - private final String[] row; - private final Query query; + private final DataAccessException exception; + private final int rowIndex; + private final String[] row; + private final Query query; - LoaderErrorImpl(SQLException exception, String[] row, int rowIndex, Query query) { + LoaderErrorImpl(DataAccessException exception, String[] row, int rowIndex, Query query) { this.exception = exception; this.row = row; this.rowIndex = rowIndex; @@ -58,7 +57,7 @@ class LoaderErrorImpl implements LoaderError { } @Override - public SQLException exception() { + public DataAccessException exception() { return exception; } diff --git a/jOOQ/src/main/java/org/jooq/impl/LoaderImpl.java b/jOOQ/src/main/java/org/jooq/impl/LoaderImpl.java index 804d2c368c..e29cfe37f6 100644 --- a/jOOQ/src/main/java/org/jooq/impl/LoaderImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/LoaderImpl.java @@ -1,38 +1,38 @@ /** - * Copyright (c) 2009-2011, Lukas Eder, lukas.eder@gmail.com - * All rights reserved. - * - * This software is licensed to you under the Apache License, Version 2.0 - * (the "License"); You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * . Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * - * . Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * . Neither the name "jOOQ" nor the names of its contributors may be - * used to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ +* Copyright (c) 2009-2011, Lukas Eder, lukas.eder@gmail.com +* All rights reserved. +* +* This software is licensed to you under the Apache License, Version 2.0 +* (the "License"); You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Redistribution and use in source and binary forms, with or without +* modification, are permitted provided that the following conditions are met: +* +* . Redistributions of source code must retain the above copyright notice, this +* list of conditions and the following disclaimer. +* +* . Redistributions in binary form must reproduce the above copyright notice, +* this list of conditions and the following disclaimer in the documentation +* and/or other materials provided with the distribution. +* +* . Neither the name "jOOQ" nor the names of its contributors may be +* used to endorse or promote products derived from this software without +* specific prior written permission. +* +* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +* POSSIBILITY OF SUCH DAMAGE. +*/ package org.jooq.impl; import java.io.BufferedReader; @@ -62,6 +62,7 @@ import org.jooq.SimpleSelectQuery; import org.jooq.Table; import org.jooq.TableRecord; import org.jooq.UpdatableTable; +import org.jooq.exception.DataAccessException; import org.jooq.tools.csv.CSVParser; import org.jooq.tools.csv.CSVReader; import org.xml.sax.InputSource; @@ -376,7 +377,7 @@ class LoaderImpl> implements continue rowloop; } } - catch (SQLException e) { + catch (DataAccessException e) { errors.add(new LoaderErrorImpl(e, row, processed - 1, select)); } } @@ -395,7 +396,7 @@ class LoaderImpl> implements } } } - catch (SQLException e) { + catch (DataAccessException e) { errors.add(new LoaderErrorImpl(e, row, processed - 1, insert)); ignored++; @@ -424,10 +425,16 @@ class LoaderImpl> implements } } } - catch (SQLException e) { + catch (DataAccessException e) { errors.add(new LoaderErrorImpl(e, null, processed - 1, null)); } } + + // SQLExceptions originating from rollbacks or commits are always fatal + // They are propagated, and not swallowed + catch (SQLException e) { + throw JooqUtil.translate("LoaderImpl.executeCSV", null, e); + } finally { reader.close(); } diff --git a/jOOQ/src/main/java/org/jooq/impl/MergeImpl.java b/jOOQ/src/main/java/org/jooq/impl/MergeImpl.java index 47c5c3c968..ad65c87a52 100644 --- a/jOOQ/src/main/java/org/jooq/impl/MergeImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/MergeImpl.java @@ -41,7 +41,6 @@ import static org.jooq.impl.Factory.notExists; import static org.jooq.impl.Factory.val; import static org.jooq.impl.Factory.vals; -import java.sql.SQLException; import java.util.Arrays; import java.util.Collection; import java.util.List; @@ -305,7 +304,7 @@ implements } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.declareTables(true) .bind(table) .bind(using) diff --git a/jOOQ/src/main/java/org/jooq/impl/MetaDataFieldProvider.java b/jOOQ/src/main/java/org/jooq/impl/MetaDataFieldProvider.java index 0797711664..2e44eb7f23 100644 --- a/jOOQ/src/main/java/org/jooq/impl/MetaDataFieldProvider.java +++ b/jOOQ/src/main/java/org/jooq/impl/MetaDataFieldProvider.java @@ -121,7 +121,7 @@ class MetaDataFieldProvider implements FieldProvider, Serializable { } } catch (SQLException e) { - throw new RuntimeException(e); + throw JooqUtil.translate("MetaFieldProvider.init", null, e); } meta = null; diff --git a/jOOQ/src/main/java/org/jooq/impl/Neg.java b/jOOQ/src/main/java/org/jooq/impl/Neg.java index e763986701..e4a69681af 100644 --- a/jOOQ/src/main/java/org/jooq/impl/Neg.java +++ b/jOOQ/src/main/java/org/jooq/impl/Neg.java @@ -43,7 +43,6 @@ import static org.jooq.SQLDialect.INGRES; import static org.jooq.SQLDialect.ORACLE; import static org.jooq.impl.ExpressionOperator.BIT_NOT; -import java.sql.SQLException; import java.util.List; import org.jooq.Attachable; @@ -100,7 +99,7 @@ class Neg extends AbstractField { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(field); } diff --git a/jOOQ/src/main/java/org/jooq/impl/NotCondition.java b/jOOQ/src/main/java/org/jooq/impl/NotCondition.java index 83e97b943d..4c28a90556 100644 --- a/jOOQ/src/main/java/org/jooq/impl/NotCondition.java +++ b/jOOQ/src/main/java/org/jooq/impl/NotCondition.java @@ -35,7 +35,6 @@ */ package org.jooq.impl; -import java.sql.SQLException; import java.util.List; import org.jooq.Attachable; @@ -64,7 +63,7 @@ class NotCondition extends AbstractCondition { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(condition); } } diff --git a/jOOQ/src/main/java/org/jooq/impl/PackageImpl.java b/jOOQ/src/main/java/org/jooq/impl/PackageImpl.java index ae1753e8ff..bdd3aaf6de 100644 --- a/jOOQ/src/main/java/org/jooq/impl/PackageImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/PackageImpl.java @@ -35,7 +35,6 @@ */ package org.jooq.impl; -import java.sql.SQLException; import java.util.Collections; import java.util.List; @@ -73,7 +72,7 @@ public class PackageImpl extends AbstractSchemaProviderQueryPart implements Pack } @Override - public final void bind(BindContext context) throws SQLException {} + public final void bind(BindContext context) {} @Override protected List getAttachables0() { diff --git a/jOOQ/src/main/java/org/jooq/impl/ParameterImpl.java b/jOOQ/src/main/java/org/jooq/impl/ParameterImpl.java index f565dcc9eb..e461ab0451 100644 --- a/jOOQ/src/main/java/org/jooq/impl/ParameterImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/ParameterImpl.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.Collections; import java.util.List; @@ -67,7 +66,7 @@ public class ParameterImpl extends AbstractNamedTypeProviderQueryPart impl } @Override - public final void bind(BindContext context) throws SQLException {} + public final void bind(BindContext context) {} @Override public final void toSQL(RenderContext context) { diff --git a/jOOQ/src/main/java/org/jooq/impl/Position.java b/jOOQ/src/main/java/org/jooq/impl/Position.java index 8752ac8e02..0309f44472 100644 --- a/jOOQ/src/main/java/org/jooq/impl/Position.java +++ b/jOOQ/src/main/java/org/jooq/impl/Position.java @@ -38,7 +38,6 @@ package org.jooq.impl; import static org.jooq.impl.Factory.function; -import java.sql.SQLException; import java.util.List; import org.jooq.Attachable; @@ -123,7 +122,7 @@ class Position extends AbstractFunction { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(search).bind(in); } } diff --git a/jOOQ/src/main/java/org/jooq/impl/QueryPartList.java b/jOOQ/src/main/java/org/jooq/impl/QueryPartList.java index 59ac5f4f17..7c8d7187ef 100644 --- a/jOOQ/src/main/java/org/jooq/impl/QueryPartList.java +++ b/jOOQ/src/main/java/org/jooq/impl/QueryPartList.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.ArrayList; import java.util.Collection; import java.util.Iterator; @@ -94,7 +93,7 @@ class QueryPartList extends AbstractQueryPart implements Li } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(wrappedList); } diff --git a/jOOQ/src/main/java/org/jooq/impl/RecordImpl.java b/jOOQ/src/main/java/org/jooq/impl/RecordImpl.java index 0f484585da..d008c978b6 100644 --- a/jOOQ/src/main/java/org/jooq/impl/RecordImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/RecordImpl.java @@ -35,19 +35,14 @@ */ package org.jooq.impl; -import org.jooq.Configuration; import org.jooq.FieldProvider; -import org.jooq.Table; /** * A general purpose record, typically used for ad-hoc types. * * @author Lukas Eder - * @deprecated - 1.6.4 [#789] - This type will become part of the internal API - * in a future release. Do not reference directly. */ -@Deprecated -public class RecordImpl extends AbstractRecord { +class RecordImpl extends AbstractRecord { /** * Generated UID @@ -55,20 +50,8 @@ public class RecordImpl extends AbstractRecord { private static final long serialVersionUID = -2201346180421463830L; /** - * @deprecated - 1.6.4 [#789] - Create attached records using - * {@link Factory#newRecord(Table)} instead. Detached records - * can be created using {@link #RecordImpl(FieldProvider)} + * Create a new general purpos record */ - @Deprecated - public RecordImpl(FieldProvider fields, Configuration configuration) { - super(fields, configuration); - } - - /** - * @deprecated - 1.6.4 [#789] - This type will become part of the internal - * API in a future release. Do not reference directly. - */ - @Deprecated public RecordImpl(FieldProvider fields) { super(fields); } diff --git a/jOOQ/src/main/java/org/jooq/impl/ReferenceImpl.java b/jOOQ/src/main/java/org/jooq/impl/ReferenceImpl.java index 8bd600faf0..fabfe27ce1 100644 --- a/jOOQ/src/main/java/org/jooq/impl/ReferenceImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/ReferenceImpl.java @@ -35,8 +35,8 @@ */ package org.jooq.impl; -import org.jooq.Record; import org.jooq.ForeignKey; +import org.jooq.Record; import org.jooq.Table; import org.jooq.TableField; import org.jooq.UniqueKey; diff --git a/jOOQ/src/main/java/org/jooq/impl/ResultImpl.java b/jOOQ/src/main/java/org/jooq/impl/ResultImpl.java index a4b51278c8..7308ebd6eb 100644 --- a/jOOQ/src/main/java/org/jooq/impl/ResultImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/ResultImpl.java @@ -45,7 +45,6 @@ import static org.jooq.impl.StringUtils.rightPad; import java.math.BigDecimal; import java.math.BigInteger; import java.sql.Date; -import java.sql.SQLException; import java.sql.Time; import java.sql.Timestamp; import java.util.ArrayList; @@ -157,29 +156,11 @@ class ResultImpl implements Result, AttachableInternal { return fields.getIndex(field); } - @Override - @Deprecated - public final int getNumberOfRecords() { - return size(); - } - @Override public final boolean isEmpty() { return records.isEmpty(); } - @Override - @Deprecated - public final List getRecords() { - return this; - } - - @Override - @Deprecated - public final R getRecord(int index) throws IndexOutOfBoundsException { - return get(index); - } - @Override public final T getValue(int index, Field field) throws IndexOutOfBoundsException { return get(index).getValue(field); @@ -1253,7 +1234,7 @@ class ResultImpl implements Result, AttachableInternal { } @Override - public final > H into(H handler) throws SQLException { + public final > H into(H handler) { for (R record : this) { handler.next(record); } diff --git a/jOOQ/src/main/java/org/jooq/impl/Rollup.java b/jOOQ/src/main/java/org/jooq/impl/Rollup.java index 3bc22dedc0..cfbb9d3506 100644 --- a/jOOQ/src/main/java/org/jooq/impl/Rollup.java +++ b/jOOQ/src/main/java/org/jooq/impl/Rollup.java @@ -37,7 +37,6 @@ package org.jooq.impl; import static org.jooq.impl.Factory.function; -import java.sql.SQLException; import java.util.Arrays; import java.util.List; @@ -95,7 +94,7 @@ class Rollup extends AbstractFunction { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(getArguments()); } diff --git a/jOOQ/src/main/java/org/jooq/impl/SQLCondition.java b/jOOQ/src/main/java/org/jooq/impl/SQLCondition.java index c12520d941..87eb9301d0 100644 --- a/jOOQ/src/main/java/org/jooq/impl/SQLCondition.java +++ b/jOOQ/src/main/java/org/jooq/impl/SQLCondition.java @@ -35,7 +35,6 @@ */ package org.jooq.impl; -import java.sql.SQLException; import java.util.Collections; import java.util.List; @@ -72,7 +71,7 @@ class SQLCondition extends AbstractCondition { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bindValues(bindings); } } diff --git a/jOOQ/src/main/java/org/jooq/impl/SQLField.java b/jOOQ/src/main/java/org/jooq/impl/SQLField.java index 1f449e5c17..0f1cfc1b84 100644 --- a/jOOQ/src/main/java/org/jooq/impl/SQLField.java +++ b/jOOQ/src/main/java/org/jooq/impl/SQLField.java @@ -35,7 +35,6 @@ */ package org.jooq.impl; -import java.sql.SQLException; import java.util.Collections; import java.util.List; @@ -72,7 +71,7 @@ class SQLField extends AbstractField { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bindValues(bindings); } diff --git a/jOOQ/src/main/java/org/jooq/impl/SQLQuery.java b/jOOQ/src/main/java/org/jooq/impl/SQLQuery.java index 0fbdd8ace8..289e9bcefe 100644 --- a/jOOQ/src/main/java/org/jooq/impl/SQLQuery.java +++ b/jOOQ/src/main/java/org/jooq/impl/SQLQuery.java @@ -35,7 +35,6 @@ */ package org.jooq.impl; -import java.sql.SQLException; import java.util.Collections; import java.util.List; @@ -70,7 +69,7 @@ class SQLQuery extends AbstractQuery { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bindValues(bindings); } diff --git a/jOOQ/src/main/java/org/jooq/impl/SQLResultQuery.java b/jOOQ/src/main/java/org/jooq/impl/SQLResultQuery.java index 441e3af588..cef2c884f6 100644 --- a/jOOQ/src/main/java/org/jooq/impl/SQLResultQuery.java +++ b/jOOQ/src/main/java/org/jooq/impl/SQLResultQuery.java @@ -36,7 +36,6 @@ package org.jooq.impl; import java.sql.ResultSetMetaData; -import java.sql.SQLException; import java.util.Collections; import java.util.List; @@ -75,7 +74,7 @@ class SQLResultQuery extends AbstractResultQuery { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bindValues(bindings); } @@ -84,14 +83,13 @@ class SQLResultQuery extends AbstractResultQuery { return Collections.emptyList(); } - @SuppressWarnings("deprecation") @Override public final Class getRecordType() { return RecordImpl.class; } @Override - protected final List> getFields(ResultSetMetaData meta) throws SQLException { + protected final List> getFields(ResultSetMetaData meta) { Configuration configuration = getConfiguration(); return new MetaDataFieldProvider(configuration, meta).getFields(); } diff --git a/jOOQ/src/main/java/org/jooq/impl/SQLTable.java b/jOOQ/src/main/java/org/jooq/impl/SQLTable.java index 398f3ae596..ef0e1cebb9 100644 --- a/jOOQ/src/main/java/org/jooq/impl/SQLTable.java +++ b/jOOQ/src/main/java/org/jooq/impl/SQLTable.java @@ -35,7 +35,6 @@ */ package org.jooq.impl; -import java.sql.SQLException; import java.util.Collections; import java.util.List; @@ -67,7 +66,6 @@ class SQLTable extends AbstractTable { return Collections.emptyList(); } - @SuppressWarnings("deprecation") @Override public final Class getRecordType() { return RecordImpl.class; @@ -84,7 +82,7 @@ class SQLTable extends AbstractTable { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bindValues(bindings); } diff --git a/jOOQ/src/main/java/org/jooq/impl/SchemaImpl.java b/jOOQ/src/main/java/org/jooq/impl/SchemaImpl.java index 0ab3476655..f25579eb38 100644 --- a/jOOQ/src/main/java/org/jooq/impl/SchemaImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/SchemaImpl.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.Collections; import java.util.HashMap; import java.util.List; @@ -75,7 +74,7 @@ public class SchemaImpl extends AbstractNamedQueryPart implements Schema { } @Override - public final void bind(BindContext context) throws SQLException {} + public final void bind(BindContext context) {} @Override public final void toSQL(RenderContext context) { @@ -83,7 +82,7 @@ public class SchemaImpl extends AbstractNamedQueryPart implements Schema { } @Override - public final Map> getTypeMapping() throws SQLException { + public final Map> getTypeMapping() { return Collections.unmodifiableMap(typeMapping); } diff --git a/jOOQ/src/main/java/org/jooq/impl/SelectQueryAsExistsCondition.java b/jOOQ/src/main/java/org/jooq/impl/SelectQueryAsExistsCondition.java index 919b78c4d9..fb679b3d02 100644 --- a/jOOQ/src/main/java/org/jooq/impl/SelectQueryAsExistsCondition.java +++ b/jOOQ/src/main/java/org/jooq/impl/SelectQueryAsExistsCondition.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.List; import org.jooq.Attachable; @@ -82,7 +81,7 @@ class SelectQueryAsExistsCondition extends AbstractCondition { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { // If this is already a subquery, proceed if (context.subquery()) { diff --git a/jOOQ/src/main/java/org/jooq/impl/SelectQueryAsField.java b/jOOQ/src/main/java/org/jooq/impl/SelectQueryAsField.java index a1f5708070..a30f28b109 100644 --- a/jOOQ/src/main/java/org/jooq/impl/SelectQueryAsField.java +++ b/jOOQ/src/main/java/org/jooq/impl/SelectQueryAsField.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.List; import org.jooq.Attachable; @@ -72,7 +71,7 @@ class SelectQueryAsField extends AbstractField { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { // If this is already a subquery, proceed if (context.subquery()) { diff --git a/jOOQ/src/main/java/org/jooq/impl/SelectQueryAsSubQueryCondition.java b/jOOQ/src/main/java/org/jooq/impl/SelectQueryAsSubQueryCondition.java index 1c47231ab9..ade4b48c25 100644 --- a/jOOQ/src/main/java/org/jooq/impl/SelectQueryAsSubQueryCondition.java +++ b/jOOQ/src/main/java/org/jooq/impl/SelectQueryAsSubQueryCondition.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.List; import org.jooq.Attachable; @@ -92,7 +91,7 @@ class SelectQueryAsSubQueryCondition extends AbstractCondition { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { // If this is already a subquery, proceed if (context.subquery()) { diff --git a/jOOQ/src/main/java/org/jooq/impl/SelectQueryAsTable.java b/jOOQ/src/main/java/org/jooq/impl/SelectQueryAsTable.java index 39f8add2a8..7f39afc29d 100644 --- a/jOOQ/src/main/java/org/jooq/impl/SelectQueryAsTable.java +++ b/jOOQ/src/main/java/org/jooq/impl/SelectQueryAsTable.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.List; import org.jooq.Attachable; @@ -82,7 +81,7 @@ class SelectQueryAsTable extends AbstractTable { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { // If this is already a subquery, proceed if (context.subquery()) { diff --git a/jOOQ/src/main/java/org/jooq/impl/SortFieldImpl.java b/jOOQ/src/main/java/org/jooq/impl/SortFieldImpl.java index 03ebd4ceeb..7edf811e3d 100644 --- a/jOOQ/src/main/java/org/jooq/impl/SortFieldImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/SortFieldImpl.java @@ -38,7 +38,6 @@ package org.jooq.impl; import static org.jooq.impl.Factory.one; import static org.jooq.impl.Factory.zero; -import java.sql.SQLException; import java.util.List; import org.jooq.Attachable; @@ -172,7 +171,7 @@ class SortFieldImpl extends AbstractNamedTypeProviderQueryPart implements } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(field); } } diff --git a/jOOQ/src/main/java/org/jooq/impl/StoredFunctionImpl.java b/jOOQ/src/main/java/org/jooq/impl/StoredFunctionImpl.java deleted file mode 100644 index bf2a915178..0000000000 --- a/jOOQ/src/main/java/org/jooq/impl/StoredFunctionImpl.java +++ /dev/null @@ -1,168 +0,0 @@ -/** - * Copyright (c) 2009-2011, Lukas Eder, lukas.eder@gmail.com - * All rights reserved. - * - * This software is licensed to you under the Apache License, Version 2.0 - * (the "License"); You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * . Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * - * . Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * . Neither the name "jOOQ" nor the names of its contributors may be - * used to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -package org.jooq.impl; - -import static org.jooq.impl.Factory.function; - -import java.sql.SQLException; -import java.util.List; - -import org.jooq.Attachable; -import org.jooq.BindContext; -import org.jooq.Configuration; -import org.jooq.DataType; -import org.jooq.Field; -import org.jooq.Package; -import org.jooq.Parameter; -import org.jooq.RenderContext; -import org.jooq.SQLDialect; -import org.jooq.Schema; -import org.jooq.StoredFunction; - -/** - * A common base class for stored functions - *

      - * This type is for JOOQ INTERNAL USE only. Do not reference directly - * - * @author Lukas Eder - * @deprecated - 1.6.8 [#852] - The stored procedure / stored function - * distinction has been reviewed in jOOQ. The 12 currently supported - * RDBMS have such a distinct idea of what is a procedure and what - * is a function that it makes no longer sense to distinguish them - * generally, in jOOQ. See https://sourceforge.net/apps/trac/jooq/ticket/852 for more - * details. - */ -@Deprecated -public class StoredFunctionImpl extends AbstractStoredObject implements StoredFunction { - - private static final long serialVersionUID = -2938795269169609664L; - - private transient T result; - private transient Field function; - private final DataType type; - - public StoredFunctionImpl(SQLDialect dialect, String name, Schema schema, DataType type) { - this(Factory.getNewFactory(dialect), name, schema, null, type); - } - - public StoredFunctionImpl(SQLDialect dialect, String name, Schema schema, Package pkg, DataType type) { - this(Factory.getNewFactory(dialect), name, schema, pkg, type); - } - - public StoredFunctionImpl(Configuration configuration, String name, Schema schema, DataType type) { - this(configuration, name, schema, null, type); - } - - public StoredFunctionImpl(Configuration configuration, String name, Schema schema, Package pkg, DataType type) { - super(configuration, name, schema, pkg); - - this.type = type; - } - - @Override - protected final List getAttachables1() { - return getAttachables(function); - } - - @Override - public final T getReturnValue() { - return result; - } - - @SuppressWarnings("unchecked") - @Override - public final Field asField() { - if (function == null) { - Field[] array = new Field[getInParameters().size()]; - - int i = 0; - for (Parameter p : getInParameters()) { - - // Disambiguate overloaded function signatures - if (SQLDialect.POSTGRES == attachable.getDialect() && isOverloaded()) { - array[i] = getInValues().get(p).cast(p.getType()); - } - else { - array[i] = getInValues().get(p); - } - - i++; - } - - RenderContext local = create(attachable).renderContext(); - toSQLQualifiedName(local); - - function = function(local.render(), type, array); - } - - return function; - } - - @SuppressWarnings("unchecked") - @Override - public final Field asField(String alias) { - return asField().as(alias); - } - - @Override - public final int execute() throws SQLException { - final Field field = asField(); - result = create(attachable).select(field).fetchOne(field); - return 0; - } - - @Override - public final void bind(BindContext context) throws SQLException { - for (Parameter parameter : getParameters()) { - if (getInValues().get(parameter) != null) { - context.bind(getInValues().get(parameter)); - } - } - } - - @Override - public final void toSQL(RenderContext context) { - context.sql(create(context).select(asField())); - } - - @Override - public final List> getParameters() { - return getInParameters(); - } -} diff --git a/jOOQ/src/main/java/org/jooq/impl/StoredProcedureImpl.java b/jOOQ/src/main/java/org/jooq/impl/StoredProcedureImpl.java deleted file mode 100644 index 9f96c099f5..0000000000 --- a/jOOQ/src/main/java/org/jooq/impl/StoredProcedureImpl.java +++ /dev/null @@ -1,292 +0,0 @@ -/** - * Copyright (c) 2009-2011, Lukas Eder, lukas.eder@gmail.com - * All rights reserved. - * - * This software is licensed to you under the Apache License, Version 2.0 - * (the "License"); You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * . Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * - * . Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * . Neither the name "jOOQ" nor the names of its contributors may be - * used to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -package org.jooq.impl; - -import java.sql.CallableStatement; -import java.sql.Connection; -import java.sql.SQLException; -import java.sql.Types; -import java.util.Collections; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -import org.jooq.ArrayRecord; -import org.jooq.Attachable; -import org.jooq.BindContext; -import org.jooq.Configuration; -import org.jooq.Field; -import org.jooq.Package; -import org.jooq.Parameter; -import org.jooq.RenderContext; -import org.jooq.SQLDialect; -import org.jooq.Schema; -import org.jooq.UDTRecord; - -/** - * A common base class for stored procedures - *

      - * This type is for JOOQ INTERNAL USE only. Do not reference directly - * - * @author Lukas Eder - * @deprecated - 1.6.8 [#852] - The stored procedure / stored function - * distinction has been reviewed in jOOQ. The 12 currently supported - * RDBMS have such a distinct idea of what is a procedure and what - * is a function that it makes no longer sense to distinguish them - * generally, in jOOQ. See https://sourceforge.net/apps/trac/jooq/ticket/852 for more - * details. - */ -@Deprecated -public class StoredProcedureImpl extends AbstractStoredProcedure { - - private static final long serialVersionUID = -8046199737354507547L; - private static final JooqLogger log = JooqLogger.getLogger(StoredProcedureImpl.class); - - private Map, Object> results; - private final Map, Integer> parameterIndexes; - - public StoredProcedureImpl(SQLDialect dialect, String name, Schema schema) { - this(Factory.getNewFactory(dialect), name, schema, null); - } - - public StoredProcedureImpl(SQLDialect dialect, String name, Schema schema, Package pkg) { - this(Factory.getNewFactory(dialect), name, schema, pkg); - } - - public StoredProcedureImpl(Configuration configuration, String name, Schema schema) { - this(configuration, name, schema, null); - } - - public StoredProcedureImpl(Configuration configuration, String name, Schema schema, Package pkg) { - super(configuration, name, schema, pkg); - - this.parameterIndexes = new HashMap, Integer>(); - } - - @Override - protected final List getAttachables2() { - return Collections.emptyList(); - } - - @Override - public final int execute() throws SQLException { - StopWatch watch = new StopWatch(); - - CallableStatement statement = null; - try { - results = new HashMap, Object>(); - Configuration configuration = attachable.getConfiguration(); - Connection connection = configuration.getConnection(); - - String sql = create(configuration).render(this); - watch.splitTrace("SQL rendered"); - - if (log.isDebugEnabled()) - log.debug("Executing procedure", create(configuration).renderInlined(this)); - if (log.isTraceEnabled()) - log.trace("Preparing statement", sql); - - statement = connection.prepareCall(sql); - watch.splitTrace("Statement prepared"); - - create(configuration).bind(this, statement); - watch.splitTrace("Variables bound"); - - registerOutParameters(configuration, statement); - watch.splitTrace("OUT params registered"); - - // Postgres requires two separate queries running in the same - // transaction to be executed when fetching refcursor types - boolean autoCommit = connection.getAutoCommit(); - if (autoCommit && configuration.getDialect() == SQLDialect.POSTGRES) { - connection.setAutoCommit(false); - } - - statement.execute(); - - if (autoCommit && configuration.getDialect() == SQLDialect.POSTGRES) { - connection.setAutoCommit(autoCommit); - } - - watch.splitTrace("Procedure called"); - - fetchOutParameters(configuration, statement); - watch.splitTrace("OUT params fetched"); - - return 0; - } - finally { - JooqUtil.safeClose(statement); - watch.splitDebug("Procedure executed"); - } - } - - private final void fetchOutParameters(Configuration configuration, CallableStatement statement) throws SQLException { - for (Parameter parameter : getParameters()) { - int index = parameterIndexes.get(parameter); - - if (parameter.equals(getReturnParameter()) || - getOutParameters().contains(parameter)) { - - results.put(parameter, FieldTypeHelper.getFromStatement( - configuration, statement, parameter.getType(), index)); - } - } - } - - @SuppressWarnings("unchecked") - private final void registerOutParameters(Configuration configuration, CallableStatement statement) throws SQLException { - - // Register all out / inout parameters according to their position - // Note that some RDBMS do not support binding by name very well - for (Parameter parameter : getParameters()) { - if (parameter.equals(getReturnParameter()) || - getOutParameters().contains(parameter)) { - - int index = parameterIndexes.get(parameter); - int sqlType = parameter.getDataType().getDataType(configuration).getSQLType(); - - switch (configuration.getDialect()) { - - // For some user defined types Oracle needs to bind - // also the type name - case ORACLE: { - if (sqlType == Types.STRUCT) { - UDTRecord record = JooqUtil.newRecord((Class>) parameter.getType()); - statement.registerOutParameter(index, Types.STRUCT, record.getSQLTypeName()); - } - - else if (sqlType == Types.ARRAY) { - ArrayRecord record = JooqUtil.newArrayRecord( - (Class>) parameter.getType(), configuration); - statement.registerOutParameter(index, Types.ARRAY, record.getName()); - } - - // The default behaviour is not to register a type - // mapping - else { - statement.registerOutParameter(index, sqlType); - } - - break; - } - - default: { - statement.registerOutParameter(index, sqlType); - break; - } - } - } - } - } - - @Override - public final void bind(BindContext context) throws SQLException { - for (Parameter parameter : getParameters()) { - int index = context.peekIndex(); - parameterIndexes.put(parameter, index); - - if (getInValues().get(parameter) != null) { - context.bind(getInValues().get(parameter)); - - // [#391] This happens when null literals are used as IN/OUT - // parameters. They're not bound as in value, but they need to - // be registered as OUT parameter - if (index == context.peekIndex() && getOutParameters().contains(parameter)) { - context.nextIndex(); - } - } - - // Skip one index for OUT parameters - else { - context.nextIndex(); - } - } - } - - @Override - public final void toSQL(RenderContext context) { - context.sql("{ "); - - if (getReturnParameter() != null) { - context.sql("? = "); - } - - context.sql("call "); - toSQLQualifiedName(context); - context.sql("("); - - String separator = ""; - for (Parameter parameter : getParameters()) { - context.sql(separator); - - // The return value has already been written - if (parameter.equals(getReturnParameter())) { - continue; - } - - // OUT and IN OUT parameters are always written as a '?' bind variable - else if (getOutParameters().contains(parameter)) { - context.sql("?"); - } - - // IN parameters are rendered normally - else { - Field value = getInValues().get(parameter); - - // Disambiguate overloaded procedure signatures - if (SQLDialect.POSTGRES == context.getDialect() && isOverloaded()) { - value = value.cast(parameter.getType()); - } - - context.sql(value); - } - - separator = ", "; - } - - context.sql(") }"); - } - - @Override - @SuppressWarnings("unchecked") - protected T getValue(Parameter parameter) { - return (T) results.get(parameter); - } -} diff --git a/jOOQ/src/main/java/org/jooq/impl/TableAlias.java b/jOOQ/src/main/java/org/jooq/impl/TableAlias.java index a1be03cdaf..c5b9fbb1ea 100644 --- a/jOOQ/src/main/java/org/jooq/impl/TableAlias.java +++ b/jOOQ/src/main/java/org/jooq/impl/TableAlias.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.List; import org.jooq.Attachable; @@ -77,7 +76,7 @@ class TableAlias extends AbstractTable { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(aliasProvider); } diff --git a/jOOQ/src/main/java/org/jooq/impl/TableFieldImpl.java b/jOOQ/src/main/java/org/jooq/impl/TableFieldImpl.java index d442fa730b..ebbee54dfc 100644 --- a/jOOQ/src/main/java/org/jooq/impl/TableFieldImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/TableFieldImpl.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.Collections; import java.util.List; @@ -85,7 +84,7 @@ public class TableFieldImpl extends AbstractField implem } @Override - public final void bind(BindContext context) throws SQLException {} + public final void bind(BindContext context) {} @Override public final boolean isNullLiteral() { diff --git a/jOOQ/src/main/java/org/jooq/impl/TableImpl.java b/jOOQ/src/main/java/org/jooq/impl/TableImpl.java index 478615889e..eef6f7974c 100644 --- a/jOOQ/src/main/java/org/jooq/impl/TableImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/TableImpl.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.List; import org.jooq.Attachable; @@ -74,7 +73,7 @@ public class TableImpl extends AbstractTable { } @Override - public final void bind(BindContext context) throws SQLException {} + public final void bind(BindContext context) {} @Override protected final FieldList getFieldList() { @@ -100,7 +99,7 @@ public class TableImpl extends AbstractTable { * Subclasses must override this method if they use the generic type * parameter for other types than {@link Record} */ - @SuppressWarnings({ "unchecked", "deprecation" }) + @SuppressWarnings("unchecked") @Override public Class getRecordType() { return (Class) RecordImpl.class; diff --git a/jOOQ/src/main/java/org/jooq/impl/TableRecordImpl.java b/jOOQ/src/main/java/org/jooq/impl/TableRecordImpl.java index 9d1a30a3f6..0bd01ae7af 100644 --- a/jOOQ/src/main/java/org/jooq/impl/TableRecordImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/TableRecordImpl.java @@ -35,12 +35,10 @@ */ package org.jooq.impl; -import java.sql.SQLException; import java.util.Collections; import java.util.List; import org.jooq.ConditionProvider; -import org.jooq.Configuration; import org.jooq.DeleteQuery; import org.jooq.Field; import org.jooq.InsertQuery; @@ -50,6 +48,7 @@ import org.jooq.Table; import org.jooq.TableField; import org.jooq.TableRecord; import org.jooq.UpdateQuery; +import org.jooq.exception.DataAccessException; /** * A record implementation for a record originating from a single table @@ -69,16 +68,6 @@ public class TableRecordImpl> extends TypeRecord table, Configuration configuration) { - super(table, configuration); - } - /* * This method is overridden covariantly by UpdatableRecordImpl */ @@ -88,7 +77,7 @@ public class TableRecordImpl> extends TypeRecord... keys) throws SQLException { + public final int storeUsing(TableField... keys) { boolean executeUpdate = false; for (TableField field : keys) { @@ -122,7 +111,7 @@ public class TableRecordImpl> extends TypeRecord insert = create().insertQuery(getTable()); for (Field field : getFields()) { @@ -156,7 +145,7 @@ public class TableRecordImpl> extends TypeRecord... keys) throws SQLException { + private final int storeUpdate(TableField... keys) { UpdateQuery update = create().updateQuery(getTable()); for (Field field : getFields()) { @@ -173,7 +162,7 @@ public class TableRecordImpl> extends TypeRecord... keys) throws SQLException { + public final int deleteUsing(TableField... keys) { try { DeleteQuery delete = create().deleteQuery(getTable()); @@ -194,7 +183,7 @@ public class TableRecordImpl> extends TypeRecord... keys) throws SQLException { + public final void refreshUsing(TableField... keys) { SimpleSelectQuery select = create().selectQuery(getTable()); for (Field field : keys) { @@ -209,7 +198,7 @@ public class TableRecordImpl> extends TypeRecord> extends AbstractQuery implements Tr } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(table); } diff --git a/jOOQ/src/main/java/org/jooq/impl/TypeRecord.java b/jOOQ/src/main/java/org/jooq/impl/TypeRecord.java index f34db8978d..cbf2d17e70 100644 --- a/jOOQ/src/main/java/org/jooq/impl/TypeRecord.java +++ b/jOOQ/src/main/java/org/jooq/impl/TypeRecord.java @@ -35,8 +35,6 @@ */ package org.jooq.impl; -import org.jooq.Configuration; -import org.jooq.Table; import org.jooq.Type; abstract class TypeRecord> extends AbstractRecord { @@ -50,16 +48,6 @@ abstract class TypeRecord> extends AbstractRecord { super(table); } - /** - * @deprecated - 1.6.4 [#789] - Create attached records using - * {@link Factory#newRecord(Table)} instead. Detached records - * can be created using {@link #TableRecordImpl(Table)} - */ - @Deprecated - public TypeRecord(T table, Configuration configuration) { - super(table, configuration); - } - @SuppressWarnings("unchecked") T getType0() { // We can be sure about that cast, as this is the only possibility diff --git a/jOOQ/src/main/java/org/jooq/impl/UDTConstant.java b/jOOQ/src/main/java/org/jooq/impl/UDTConstant.java index 0e554335e0..cc0a85d5f7 100644 --- a/jOOQ/src/main/java/org/jooq/impl/UDTConstant.java +++ b/jOOQ/src/main/java/org/jooq/impl/UDTConstant.java @@ -38,7 +38,6 @@ package org.jooq.impl; import static org.jooq.impl.Factory.val; -import java.sql.SQLException; import java.util.List; import org.jooq.Attachable; @@ -151,7 +150,7 @@ class UDTConstant> extends AbstractField { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { switch (context.getDialect()) { // Oracle supports java.sql.SQLData, hence the record can be bound diff --git a/jOOQ/src/main/java/org/jooq/impl/UDTFieldImpl.java b/jOOQ/src/main/java/org/jooq/impl/UDTFieldImpl.java index ba6d7489a3..fde47f08d1 100644 --- a/jOOQ/src/main/java/org/jooq/impl/UDTFieldImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/UDTFieldImpl.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.Collections; import java.util.List; @@ -85,7 +84,7 @@ public class UDTFieldImpl, T> extends AbstractField im } @Override - public final void bind(BindContext context) throws SQLException {} + public final void bind(BindContext context) {} @Override public final boolean isNullLiteral() { diff --git a/jOOQ/src/main/java/org/jooq/impl/UDTImpl.java b/jOOQ/src/main/java/org/jooq/impl/UDTImpl.java index a4954409f3..709d00b0d4 100644 --- a/jOOQ/src/main/java/org/jooq/impl/UDTImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/UDTImpl.java @@ -122,7 +122,7 @@ public class UDTImpl> extends AbstractType implements } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { throw new UnsupportedOperationException("UDTImpl cannot be used as a true QueryPart"); } } diff --git a/jOOQ/src/main/java/org/jooq/impl/Union.java b/jOOQ/src/main/java/org/jooq/impl/Union.java index a3f3ac2153..9e3e09ba18 100644 --- a/jOOQ/src/main/java/org/jooq/impl/Union.java +++ b/jOOQ/src/main/java/org/jooq/impl/Union.java @@ -35,7 +35,6 @@ */ package org.jooq.impl; -import java.sql.SQLException; import java.util.ArrayList; import java.util.List; @@ -117,7 +116,7 @@ class Union extends AbstractSelect { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(queries); } } diff --git a/jOOQ/src/main/java/org/jooq/impl/UpdatableRecordImpl.java b/jOOQ/src/main/java/org/jooq/impl/UpdatableRecordImpl.java index f3b568818a..8e15a11bad 100644 --- a/jOOQ/src/main/java/org/jooq/impl/UpdatableRecordImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/UpdatableRecordImpl.java @@ -35,17 +35,14 @@ */ package org.jooq.impl; -import java.sql.SQLException; import java.util.ArrayList; import java.util.LinkedHashSet; import java.util.List; import java.util.Set; -import org.jooq.Configuration; import org.jooq.Field; import org.jooq.Identity; import org.jooq.Record; -import org.jooq.Table; import org.jooq.TableRecord; import org.jooq.UniqueKey; import org.jooq.UpdatableRecord; @@ -65,28 +62,8 @@ public class UpdatableRecordImpl> extends TableRecordIm */ private static final long serialVersionUID = -1012420583600561579L; - @SuppressWarnings("deprecation") public UpdatableRecordImpl(UpdatableTable table) { - this(table, null); - } - - /** - * @deprecated - 1.6.4 [#789] - Create attached records using - * {@link Factory#newRecord(Table)} instead. Detached records - * can be created using - * {@link #UpdatableRecordImpl(UpdatableTable)} - */ - @Deprecated - public UpdatableRecordImpl(UpdatableTable table, Configuration configuration) { - super(table, configuration); - } - - /** - * @deprecated - Use {@link #UpdatableRecordImpl(UpdatableTable, Configuration)} instead - */ - @Deprecated - public UpdatableRecordImpl(Configuration configuration, UpdatableTable table) { - super(table, configuration); + super(table); } @Override @@ -99,17 +76,17 @@ public class UpdatableRecordImpl> extends TableRecordIm } @Override - public final int store() throws SQLException { + public final int store() { return storeUsing(getMainKey().getFieldsArray()); } @Override - public final int delete() throws SQLException { + public final int delete() { return deleteUsing(getMainKey().getFieldsArray()); } @Override - public final void refresh() throws SQLException { + public final void refresh() { refreshUsing(getMainKey().getFieldsArray()); } diff --git a/jOOQ/src/main/java/org/jooq/impl/UpdateImpl.java b/jOOQ/src/main/java/org/jooq/impl/UpdateImpl.java index c247a222e3..efa373d57b 100644 --- a/jOOQ/src/main/java/org/jooq/impl/UpdateImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/UpdateImpl.java @@ -39,7 +39,6 @@ import static org.jooq.impl.Factory.condition; import static org.jooq.impl.Factory.exists; import static org.jooq.impl.Factory.notExists; -import java.sql.SQLException; import java.util.Collection; import java.util.Map; @@ -53,7 +52,6 @@ import org.jooq.TableRecord; import org.jooq.UpdateConditionStep; import org.jooq.UpdateQuery; import org.jooq.UpdateSetMoreStep; -import org.jooq.exception.DetachedException; /** * A wrapper for an {@link UpdateQuery} @@ -78,7 +76,7 @@ final class UpdateImpl> } @Override - public final int execute() throws SQLException, DetachedException { + public final int execute() { return getDelegate().execute(); } diff --git a/jOOQ/src/main/java/org/jooq/impl/UpdateQueryImpl.java b/jOOQ/src/main/java/org/jooq/impl/UpdateQueryImpl.java index 05a2963256..0f69fa54e8 100644 --- a/jOOQ/src/main/java/org/jooq/impl/UpdateQueryImpl.java +++ b/jOOQ/src/main/java/org/jooq/impl/UpdateQueryImpl.java @@ -36,7 +36,6 @@ package org.jooq.impl; -import java.sql.SQLException; import java.util.Collection; import java.util.List; import java.util.Map; @@ -94,7 +93,7 @@ class UpdateQueryImpl> extends AbstractStoreQuery im } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(getInto()).bind(updateMap).bind(condition); } diff --git a/jOOQ/src/main/java/org/jooq/impl/WindowFunction.java b/jOOQ/src/main/java/org/jooq/impl/WindowFunction.java index 1692b18c6e..adcdc04303 100644 --- a/jOOQ/src/main/java/org/jooq/impl/WindowFunction.java +++ b/jOOQ/src/main/java/org/jooq/impl/WindowFunction.java @@ -37,7 +37,6 @@ package org.jooq.impl; import static org.jooq.impl.Factory.one; -import java.sql.SQLException; import java.util.Arrays; import java.util.Collection; import java.util.List; @@ -234,7 +233,7 @@ implements } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind((QueryPart) arguments) .bind((QueryPart) partitionBy) .bind((QueryPart) orderBy); diff --git a/jOOQ/src/main/java/org/jooq/impl/WrappedList.java b/jOOQ/src/main/java/org/jooq/impl/WrappedList.java index 4ffe9e8efb..9b89e9efbf 100644 --- a/jOOQ/src/main/java/org/jooq/impl/WrappedList.java +++ b/jOOQ/src/main/java/org/jooq/impl/WrappedList.java @@ -35,7 +35,6 @@ */ package org.jooq.impl; -import java.sql.SQLException; import java.util.List; import org.jooq.Attachable; @@ -67,7 +66,7 @@ class WrappedList extends AbstractQueryPart { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind((QueryPart) wrapped); } diff --git a/jOOQ/src/main/java/org/jooq/util/db2/DB2DataType.java b/jOOQ/src/main/java/org/jooq/util/db2/DB2DataType.java index d38deb6825..8c32d5a293 100644 --- a/jOOQ/src/main/java/org/jooq/util/db2/DB2DataType.java +++ b/jOOQ/src/main/java/org/jooq/util/db2/DB2DataType.java @@ -122,14 +122,6 @@ public class DB2DataType extends AbstractDataType { super(SQLDialect.DB2, sqlDataType, sqlDataType.getType(), typeName, castTypeName); } - /** - * @deprecated - 1.6.3 - Do not reuse - */ - @Deprecated - public static DataType getDataType(String typeName) { - return getDataType(SQLDialect.DB2, typeName); - } - public static DataType getDataType(Class type) { return getDataType(SQLDialect.DB2, type); } diff --git a/jOOQ/src/main/java/org/jooq/util/derby/DerbyDataType.java b/jOOQ/src/main/java/org/jooq/util/derby/DerbyDataType.java index 268d8352de..1cf7c0a3c8 100644 --- a/jOOQ/src/main/java/org/jooq/util/derby/DerbyDataType.java +++ b/jOOQ/src/main/java/org/jooq/util/derby/DerbyDataType.java @@ -135,14 +135,6 @@ public class DerbyDataType extends AbstractDataType { super(SQLDialect.DERBY, sqlDataType, sqlDataType.getType(), typeName, castName); } - /** - * @deprecated - 1.6.3 - Do not reuse - */ - @Deprecated - public static DataType getDataType(String typeName) { - return getDataType(SQLDialect.DERBY, typeName); - } - public static DataType getDataType(Class type) { return getDataType(SQLDialect.DERBY, type); } diff --git a/jOOQ/src/main/java/org/jooq/util/h2/H2DataType.java b/jOOQ/src/main/java/org/jooq/util/h2/H2DataType.java index b18dc4a45f..6ec46673eb 100644 --- a/jOOQ/src/main/java/org/jooq/util/h2/H2DataType.java +++ b/jOOQ/src/main/java/org/jooq/util/h2/H2DataType.java @@ -148,14 +148,6 @@ public class H2DataType extends AbstractDataType { super(SQLDialect.H2, sqlDataType, sqlDataType.getType(), typeName); } - /** - * @deprecated - 1.6.3 - Do not reuse - */ - @Deprecated - public static DataType getDataType(String typeName) { - return getDataType(SQLDialect.H2, typeName); - } - public static DataType getDataType(Class type) { return getDataType(SQLDialect.H2, type); } diff --git a/jOOQ/src/main/java/org/jooq/util/hsqldb/HSQLDBDataType.java b/jOOQ/src/main/java/org/jooq/util/hsqldb/HSQLDBDataType.java index 6ad78d1485..0eb5919064 100644 --- a/jOOQ/src/main/java/org/jooq/util/hsqldb/HSQLDBDataType.java +++ b/jOOQ/src/main/java/org/jooq/util/hsqldb/HSQLDBDataType.java @@ -131,14 +131,6 @@ public class HSQLDBDataType extends AbstractDataType { super(SQLDialect.HSQLDB, sqlDataType, sqlDataType.getType(), typeName, castTypeName); } - /** - * @deprecated - 1.6.3 - Do not reuse - */ - @Deprecated - public static DataType getDataType(String typeName) { - return getDataType(SQLDialect.HSQLDB, typeName); - } - public static DataType getDataType(Class type) { return getDataType(SQLDialect.HSQLDB, type); } diff --git a/jOOQ/src/main/java/org/jooq/util/ingres/IngresDataType.java b/jOOQ/src/main/java/org/jooq/util/ingres/IngresDataType.java index 77d20bd2ae..9812bcd809 100644 --- a/jOOQ/src/main/java/org/jooq/util/ingres/IngresDataType.java +++ b/jOOQ/src/main/java/org/jooq/util/ingres/IngresDataType.java @@ -146,14 +146,6 @@ public class IngresDataType extends AbstractDataType { super(SQLDialect.INGRES, sqlDataType, sqlDataType.getType(), typeName, castTypeName); } - /** - * @deprecated - 1.6.3 - Do not reuse - */ - @Deprecated - public static DataType getDataType(String typeName) { - return getDataType(SQLDialect.INGRES, typeName); - } - public static DataType getDataType(Class type) { return getDataType(SQLDialect.INGRES, type); } diff --git a/jOOQ/src/main/java/org/jooq/util/mysql/MySQLDataType.java b/jOOQ/src/main/java/org/jooq/util/mysql/MySQLDataType.java index e2dcae181f..6da2b23ac6 100644 --- a/jOOQ/src/main/java/org/jooq/util/mysql/MySQLDataType.java +++ b/jOOQ/src/main/java/org/jooq/util/mysql/MySQLDataType.java @@ -125,14 +125,6 @@ public class MySQLDataType extends AbstractDataType { super(SQLDialect.MYSQL, sqlDataType, sqlDataType.getType(), typeName, castTypeName); } - /** - * @deprecated - 1.6.3 - Do not reuse - */ - @Deprecated - public static DataType getDataType(String typeName) { - return getDataType(SQLDialect.MYSQL, typeName); - } - public static DataType getDataType(Class type) { return getDataType(SQLDialect.MYSQL, type); } diff --git a/jOOQ/src/main/java/org/jooq/util/oracle/OracleDataType.java b/jOOQ/src/main/java/org/jooq/util/oracle/OracleDataType.java index 6debe6c740..3b78d96366 100644 --- a/jOOQ/src/main/java/org/jooq/util/oracle/OracleDataType.java +++ b/jOOQ/src/main/java/org/jooq/util/oracle/OracleDataType.java @@ -153,14 +153,6 @@ public class OracleDataType extends AbstractDataType { super(SQLDialect.ORACLE, sqlDataType, sqlDataType.getType(), typeName, castTypeName, hasPrecisionAndScale); } - /** - * @deprecated - 1.6.3 - Do not reuse - */ - @Deprecated - public static DataType getDataType(String typeName) { - return getDataType(SQLDialect.ORACLE, typeName); - } - public static DataType getDataType(Class type) { return getDataType(SQLDialect.ORACLE, type); } diff --git a/jOOQ/src/main/java/org/jooq/util/oracle/OracleFactory.java b/jOOQ/src/main/java/org/jooq/util/oracle/OracleFactory.java index 79fc127381..5befc9a2c1 100644 --- a/jOOQ/src/main/java/org/jooq/util/oracle/OracleFactory.java +++ b/jOOQ/src/main/java/org/jooq/util/oracle/OracleFactory.java @@ -36,7 +36,6 @@ package org.jooq.util.oracle; import java.sql.Connection; -import java.sql.SQLException; import org.jooq.BindContext; import org.jooq.Field; @@ -165,7 +164,7 @@ public class OracleFactory extends Factory { } @Override - public final void bind(BindContext context) throws SQLException { + public final void bind(BindContext context) { context.bind(field); } } diff --git a/jOOQ/src/main/java/org/jooq/util/postgres/PostgresDataType.java b/jOOQ/src/main/java/org/jooq/util/postgres/PostgresDataType.java index 9e16653034..9b78e6d9ab 100644 --- a/jOOQ/src/main/java/org/jooq/util/postgres/PostgresDataType.java +++ b/jOOQ/src/main/java/org/jooq/util/postgres/PostgresDataType.java @@ -148,14 +148,6 @@ public class PostgresDataType extends AbstractDataType { super(SQLDialect.POSTGRES, sqlDataType, sqlDataType.getType(), typeName); } - /** - * @deprecated - 1.6.3 - Do not reuse - */ - @Deprecated - public static DataType getDataType(String typeName) { - return getDataType(SQLDialect.POSTGRES, typeName); - } - public static DataType getDataType(Class type) { return getDataType(SQLDialect.POSTGRES, type); } diff --git a/jOOQ/src/main/java/org/jooq/util/postgres/PostgresSingleUDTOutParameterProcedure.java b/jOOQ/src/main/java/org/jooq/util/postgres/PostgresSingleUDTOutParameterProcedure.java deleted file mode 100644 index e53e3a5bb9..0000000000 --- a/jOOQ/src/main/java/org/jooq/util/postgres/PostgresSingleUDTOutParameterProcedure.java +++ /dev/null @@ -1,137 +0,0 @@ -/** - * Copyright (c) 2009-2011, Lukas Eder, lukas.eder@gmail.com - * All rights reserved. - * - * This software is licensed to you under the Apache License, Version 2.0 - * (the "License"); You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * . Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * - * . Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * . Neither the name "jOOQ" nor the names of its contributors may be - * used to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ -package org.jooq.util.postgres; - -import java.sql.SQLException; -import java.util.Arrays; -import java.util.List; - -import org.jooq.Attachable; -import org.jooq.BindContext; -import org.jooq.Configuration; -import org.jooq.DataType; -import org.jooq.Parameter; -import org.jooq.RenderContext; -import org.jooq.SQLDialect; -import org.jooq.Schema; -import org.jooq.impl.AbstractStoredProcedure; -import org.jooq.impl.StoredFunctionImpl; - -/** - * This will be unsupported from jOOQ 1.6.8. jOOQ will not correct major flaws - * in JDBC drivers. There is no way of unserialising UDT OUT parameters from - * Postgres to Java - * - * @author Lukas Eder - * @deprecated - 1.6.8 [#852] - The stored procedure / stored function - * distinction has been reviewed in jOOQ. The 12 currently supported - * RDBMS have such a distinct idea of what is a procedure and what - * is a function that it makes no longer sense to distinguish them - * generally, in jOOQ. See https://sourceforge.net/apps/trac/jooq/ticket/852 for more - * details. - */ -@Deprecated -public class PostgresSingleUDTOutParameterProcedure extends AbstractStoredProcedure { - - private static final long serialVersionUID = 2424820485339322794L; - - private Object result; - private DelegateFunction delegate; - - public PostgresSingleUDTOutParameterProcedure(SQLDialect dialect, String name, Schema schema) { - super(dialect, name, schema, null); - } - - public PostgresSingleUDTOutParameterProcedure(Configuration configuration, String name, Schema schema) { - super(configuration, name, schema, null); - } - - @Override - protected final List getAttachables2() { - return Arrays.asList((Attachable) getDelegate()); - } - - @Override - public final int execute() throws SQLException { - int i = getDelegate().execute(); - result = getDelegate().getReturnValue(); - - return i; - } - - @Override - public final void toSQL(RenderContext context) { - context.sql(getDelegate()); - } - - @Override - public final void bind(BindContext context) throws SQLException { - context.bind(getDelegate()); - } - - private final StoredFunctionImpl getDelegate() { - if (delegate == null) { - delegate = new DelegateFunction(); - } - - return delegate; - } - - @SuppressWarnings("unchecked") - @Override - protected final T getValue(Parameter parameter) { - return (T) result; - } - - private final class DelegateFunction extends StoredFunctionImpl { - private static final long serialVersionUID = 5924709487050570519L; - - @SuppressWarnings("unchecked") - public DelegateFunction() { - super( - SQLDialect.POSTGRES, - PostgresSingleUDTOutParameterProcedure.this.getName(), - PostgresSingleUDTOutParameterProcedure.this.getSchema(), - (DataType) PostgresSingleUDTOutParameterProcedure.this.getOutParameters().get(0).getDataType()); - - for (Parameter p : PostgresSingleUDTOutParameterProcedure.this.getInParameters()) { - addInParameter(p); - } - } - } -} diff --git a/jOOQ/src/main/java/org/jooq/util/sqlite/SQLiteDataType.java b/jOOQ/src/main/java/org/jooq/util/sqlite/SQLiteDataType.java index f6368a4cbf..b87ae4dc86 100644 --- a/jOOQ/src/main/java/org/jooq/util/sqlite/SQLiteDataType.java +++ b/jOOQ/src/main/java/org/jooq/util/sqlite/SQLiteDataType.java @@ -121,14 +121,6 @@ public class SQLiteDataType extends AbstractDataType { super(SQLDialect.SQLITE, sqlDataType, sqlDataType.getType(), typeName); } - /** - * @deprecated - 1.6.3 - Do not reuse - */ - @Deprecated - public static DataType getDataType(String typeName) { - return getDataType(SQLDialect.SQLITE, typeName); - } - public static DataType getDataType(Class type) { return getDataType(SQLDialect.SQLITE, type); } diff --git a/jOOQ/src/main/java/org/jooq/util/sqlserver/SQLServerDataType.java b/jOOQ/src/main/java/org/jooq/util/sqlserver/SQLServerDataType.java index 82b97c8861..2af93c8c97 100644 --- a/jOOQ/src/main/java/org/jooq/util/sqlserver/SQLServerDataType.java +++ b/jOOQ/src/main/java/org/jooq/util/sqlserver/SQLServerDataType.java @@ -122,14 +122,6 @@ public class SQLServerDataType extends AbstractDataType { super(SQLDialect.SQLSERVER, sqlDataType, sqlDataType.getType(), typeName, castTypeName); } - /** - * @deprecated - 1.6.3 - Do not reuse - */ - @Deprecated - public static DataType getDataType(String typeName) { - return getDataType(SQLDialect.SQLSERVER, typeName); - } - public static DataType getDataType(Class type) { return getDataType(SQLDialect.SQLSERVER, type); } diff --git a/jOOQ/src/main/java/org/jooq/util/sybase/SybaseDataType.java b/jOOQ/src/main/java/org/jooq/util/sybase/SybaseDataType.java index 5c7409c2e5..8d1a14894c 100644 --- a/jOOQ/src/main/java/org/jooq/util/sybase/SybaseDataType.java +++ b/jOOQ/src/main/java/org/jooq/util/sybase/SybaseDataType.java @@ -122,14 +122,6 @@ public class SybaseDataType extends AbstractDataType { super(SQLDialect.SYBASE, sqlDataType, sqlDataType.getType(), typeName); } - /** - * @deprecated - 1.6.3 - Do not reuse - */ - @Deprecated - public static DataType getDataType(String typeName) { - return getDataType(SQLDialect.SYBASE, typeName); - } - public static DataType getDataType(Class type) { return getDataType(SQLDialect.SYBASE, type); } diff --git a/jOOQ/src/test/java/org/jooq/test/jOOQTest.java b/jOOQ/src/test/java/org/jooq/test/jOOQTest.java index a10928ed4c..16f426b9b9 100644 --- a/jOOQ/src/test/java/org/jooq/test/jOOQTest.java +++ b/jOOQ/src/test/java/org/jooq/test/jOOQTest.java @@ -406,9 +406,12 @@ public class jOOQTest { } @Override - public void bind(BindContext ctx) throws SQLException { - ctx.statement().setInt(ctx.nextIndex(), 1); - ctx.bindValues(1); + public void bind(BindContext ctx) { + try { + ctx.statement().setInt(ctx.nextIndex(), 1); + ctx.bindValues(1); + } + catch (SQLException ignore) {} } }; @@ -463,7 +466,7 @@ public class jOOQTest { } @Override - public void bind(BindContext ctx) throws SQLException { + public void bind(BindContext ctx) { ctx.bindValues(1); } };