[#492] RUNTIME-CONFIG: Add run-time configuration
[#1151] Deprecate SchemaMapping in favour of new runtime configuration Re-generated jooq-meta artefacts
This commit is contained in:
parent
fc682afd31
commit
c0764d20c3
@ -62,7 +62,6 @@ import org.jooq.Parameter;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Result;
|
||||
import org.jooq.SQLDialect;
|
||||
import org.jooq.SchemaMapping;
|
||||
import org.jooq.Select;
|
||||
import org.jooq.Sequence;
|
||||
import org.jooq.Table;
|
||||
@ -70,6 +69,7 @@ import org.jooq.TableField;
|
||||
import org.jooq.UDT;
|
||||
import org.jooq.UDTField;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.exception.DataAccessException;
|
||||
import org.jooq.exception.SQLDialectNotSupportedException;
|
||||
import org.jooq.impl.AbstractKeys;
|
||||
@ -246,6 +246,7 @@ public class DefaultGenerator implements Generator {
|
||||
}
|
||||
}
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
private void generate(
|
||||
Database database,
|
||||
SchemaDefinition schema,
|
||||
@ -316,21 +317,46 @@ public class DefaultGenerator implements Generator {
|
||||
outF.println("\t\tsuper(connection);");
|
||||
outF.println("\t}");
|
||||
|
||||
if (generateDeprecated()) {
|
||||
outF.println();
|
||||
outF.println("\t/**");
|
||||
outF.println("\t * Create a factory with a connection and a schema mapping");
|
||||
outF.println("\t * ");
|
||||
outF.print("\t * @deprecated - 2.0.5 - Use {@link #");
|
||||
outF.print(strategy.getJavaClassName(schema, "Factory"));
|
||||
outF.print("(");
|
||||
outF.print(Connection.class);
|
||||
outF.print(", ");
|
||||
outF.print(Settings.class);
|
||||
outF.println(")} instead");
|
||||
outF.println("\t */");
|
||||
outF.println("\t@Deprecated");
|
||||
outF.print("\tpublic ");
|
||||
outF.print(strategy.getJavaClassName(schema, "Factory"));
|
||||
outF.print("(");
|
||||
outF.print(Connection.class);
|
||||
outF.print(" connection, ");
|
||||
outF.print(org.jooq.SchemaMapping.class);
|
||||
outF.println(" mapping) {");
|
||||
outF.println("\t\tsuper(connection, mapping);");
|
||||
outF.println("\t}");
|
||||
}
|
||||
|
||||
outF.println();
|
||||
outF.println("\t/**");
|
||||
outF.println("\t * Create a factory with a connection and a schema mapping");
|
||||
outF.println("\t * Create a factory with a connection and some settings");
|
||||
outF.println("\t *");
|
||||
outF.println("\t * @param connection The connection to use with objects created from this factory");
|
||||
outF.println("\t * @param mapping The schema mapping to use with objects created from this factory");
|
||||
outF.println("\t * @param settings The settings to apply to objects created from this factory");
|
||||
outF.println("\t */");
|
||||
outF.print("\tpublic ");
|
||||
outF.print(strategy.getJavaClassName(schema, "Factory"));
|
||||
outF.print("(");
|
||||
outF.print(Connection.class);
|
||||
outF.print(" connection, ");
|
||||
outF.print(SchemaMapping.class);
|
||||
outF.println(" mapping) {");
|
||||
outF.println("\t\tsuper(connection, mapping);");
|
||||
outF.print(Settings.class);
|
||||
outF.println(" settings) {");
|
||||
outF.println("\t\tsuper(connection, settings);");
|
||||
outF.println("\t}");
|
||||
|
||||
watch.splitInfo("Schema generated");
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
<!-- Run a full mvn clean package install deploy first before this -->
|
||||
<target name="xjc-generator" description="Generate JAXB artefacts from XSD">
|
||||
<mkdir dir="${dir.java}/org/jooq/util/jaxb" />
|
||||
<xjc schema="${dir.resources}/jooq-codegen-2.0.4.xsd" destdir="${dir.java}" package="org.jooq.util.jaxb">
|
||||
<xjc schema="${dir.resources}/xsd/jooq-codegen-2.0.4.xsd" destdir="${dir.java}" package="org.jooq.util.jaxb">
|
||||
<arg value="-Xxew" />
|
||||
<arg value="-instantiate lazy" />
|
||||
</xjc>
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.ase.sys;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Dbo extends org.jooq.impl.SchemaImpl {
|
||||
|
||||
private static final long serialVersionUID = -348471044;
|
||||
private static final long serialVersionUID = -123131457;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.ase.sys;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class DboFactory extends org.jooq.util.ase.ASEFactory {
|
||||
|
||||
private static final long serialVersionUID = 1609387664;
|
||||
private static final long serialVersionUID = -316506747;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
@ -22,12 +22,12 @@ public class DboFactory extends org.jooq.util.ase.ASEFactory {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a factory with a connection and a schema mapping
|
||||
* Create a factory with a connection and some settings
|
||||
*
|
||||
* @param connection The connection to use with objects created from this factory
|
||||
* @param mapping The schema mapping to use with objects created from this factory
|
||||
* @param settings The settings to apply to objects created from this factory
|
||||
*/
|
||||
public DboFactory(java.sql.Connection connection, org.jooq.SchemaMapping mapping) {
|
||||
super(connection, mapping);
|
||||
public DboFactory(java.sql.Connection connection, org.jooq.conf.Settings settings) {
|
||||
super(connection, settings);
|
||||
}
|
||||
}
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.util.ase.sys;
|
||||
*
|
||||
* Convenience access to all tables in dbo
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public final class Tables {
|
||||
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.ase.sys.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Sysindexes extends org.jooq.impl.TableImpl<org.jooq.util.ase.sys.tables.records.SysindexesRecord> {
|
||||
|
||||
private static final long serialVersionUID = -335637999;
|
||||
private static final long serialVersionUID = -1236592044;
|
||||
|
||||
/**
|
||||
* The singleton instance of sysindexes
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.ase.sys.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Sysobjects extends org.jooq.impl.TableImpl<org.jooq.util.ase.sys.tables.records.SysobjectsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1179279000;
|
||||
private static final long serialVersionUID = 1167856501;
|
||||
|
||||
/**
|
||||
* The singleton instance of sysobjects
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.ase.sys.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Sysreferences extends org.jooq.impl.TableImpl<org.jooq.util.ase.sys.tables.records.SysreferencesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 995195407;
|
||||
private static final long serialVersionUID = -1311086254;
|
||||
|
||||
/**
|
||||
* The singleton instance of sysreferences
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.ase.sys.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SysindexesRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.ase.sys.tables.records.SysindexesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 2124697157;
|
||||
private static final long serialVersionUID = 539000482;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.ase.sys.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SysobjectsRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.ase.sys.tables.records.SysobjectsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 316897165;
|
||||
private static final long serialVersionUID = -1091912214;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.ase.sys.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SysreferencesRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.ase.sys.tables.records.SysreferencesRecord> {
|
||||
|
||||
private static final long serialVersionUID = -191217771;
|
||||
private static final long serialVersionUID = 1539225586;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Syscat extends org.jooq.impl.SchemaImpl {
|
||||
|
||||
private static final long serialVersionUID = -2031531928;
|
||||
private static final long serialVersionUID = 1606604715;
|
||||
|
||||
/**
|
||||
* The singleton instance of SYSCAT
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SyscatFactory extends org.jooq.util.db2.DB2Factory {
|
||||
|
||||
private static final long serialVersionUID = 470462597;
|
||||
private static final long serialVersionUID = -1099424048;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
@ -22,12 +22,12 @@ public class SyscatFactory extends org.jooq.util.db2.DB2Factory {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a factory with a connection and a schema mapping
|
||||
* Create a factory with a connection and some settings
|
||||
*
|
||||
* @param connection The connection to use with objects created from this factory
|
||||
* @param mapping The schema mapping to use with objects created from this factory
|
||||
* @param settings The settings to apply to objects created from this factory
|
||||
*/
|
||||
public SyscatFactory(java.sql.Connection connection, org.jooq.SchemaMapping mapping) {
|
||||
super(connection, mapping);
|
||||
public SyscatFactory(java.sql.Connection connection, org.jooq.conf.Settings settings) {
|
||||
super(connection, settings);
|
||||
}
|
||||
}
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.util.db2.syscat;
|
||||
*
|
||||
* Convenience access to all tables in SYSCAT
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public final class Tables {
|
||||
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Attributes extends org.jooq.impl.TableImpl<org.jooq.util.db2.syscat.tables.records.AttributesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 114519913;
|
||||
private static final long serialVersionUID = 649430918;
|
||||
|
||||
/**
|
||||
* The singleton instance of ATTRIBUTES
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Columns extends org.jooq.impl.TableImpl<org.jooq.util.db2.syscat.tables.records.ColumnsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1714029624;
|
||||
private static final long serialVersionUID = -610989189;
|
||||
|
||||
/**
|
||||
* The singleton instance of COLUMNS
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Datatypes extends org.jooq.impl.TableImpl<org.jooq.util.db2.syscat.tables.records.DatatypesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1467129668;
|
||||
private static final long serialVersionUID = -1473135135;
|
||||
|
||||
/**
|
||||
* The singleton instance of DATATYPES
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Funcparms extends org.jooq.impl.TableImpl<org.jooq.util.db2.syscat.tables.records.FuncparmsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1732037261;
|
||||
private static final long serialVersionUID = 1833106858;
|
||||
|
||||
/**
|
||||
* The singleton instance of FUNCPARMS
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Functions extends org.jooq.impl.TableImpl<org.jooq.util.db2.syscat.tables.records.FunctionsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1339118341;
|
||||
private static final long serialVersionUID = 1561552648;
|
||||
|
||||
/**
|
||||
* The singleton instance of FUNCTIONS
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Keycoluse extends org.jooq.impl.TableImpl<org.jooq.util.db2.syscat.tables.records.KeycoluseRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1383686737;
|
||||
private static final long serialVersionUID = 1525319346;
|
||||
|
||||
/**
|
||||
* The singleton instance of KEYCOLUSE
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Procedures extends org.jooq.impl.TableImpl<org.jooq.util.db2.syscat.tables.records.ProceduresRecord> {
|
||||
|
||||
private static final long serialVersionUID = 70900412;
|
||||
private static final long serialVersionUID = -1152908993;
|
||||
|
||||
/**
|
||||
* The singleton instance of PROCEDURES
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Procparms extends org.jooq.impl.TableImpl<org.jooq.util.db2.syscat.tables.records.ProcparmsRecord> {
|
||||
|
||||
private static final long serialVersionUID = -510262862;
|
||||
private static final long serialVersionUID = 1051050895;
|
||||
|
||||
/**
|
||||
* The singleton instance of PROCPARMS
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class References extends org.jooq.impl.TableImpl<org.jooq.util.db2.syscat.tables.records.ReferencesRecord> {
|
||||
|
||||
private static final long serialVersionUID = -784770410;
|
||||
private static final long serialVersionUID = -359281511;
|
||||
|
||||
/**
|
||||
* The singleton instance of REFERENCES
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Sequences extends org.jooq.impl.TableImpl<org.jooq.util.db2.syscat.tables.records.SequencesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 977500901;
|
||||
private static final long serialVersionUID = 1459423080;
|
||||
|
||||
/**
|
||||
* The singleton instance of SEQUENCES
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Tabconst extends org.jooq.impl.TableImpl<org.jooq.util.db2.syscat.tables.records.TabconstRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1253863506;
|
||||
private static final long serialVersionUID = -802237547;
|
||||
|
||||
/**
|
||||
* The singleton instance of TABCONST
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Tables extends org.jooq.impl.TableImpl<org.jooq.util.db2.syscat.tables.records.TablesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 977919592;
|
||||
private static final long serialVersionUID = -1437908091;
|
||||
|
||||
/**
|
||||
* The singleton instance of TABLES
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class AttributesRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.db2.syscat.tables.records.AttributesRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1009050174;
|
||||
private static final long serialVersionUID = -500565537;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class ColumnsRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.db2.syscat.tables.records.ColumnsRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1698073202;
|
||||
private static final long serialVersionUID = 173171563;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class DatatypesRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.db2.syscat.tables.records.DatatypesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 6406942;
|
||||
private static final long serialVersionUID = -1502303301;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FuncparmsRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.db2.syscat.tables.records.FuncparmsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 841916438;
|
||||
private static final long serialVersionUID = -1618742413;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FunctionsRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.db2.syscat.tables.records.FunctionsRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1446463858;
|
||||
private static final long serialVersionUID = -1177704469;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class KeycoluseRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.db2.syscat.tables.records.KeycoluseRecord> {
|
||||
|
||||
private static final long serialVersionUID = 2023773812;
|
||||
private static final long serialVersionUID = 1885731921;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class ProceduresRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.db2.syscat.tables.records.ProceduresRecord> {
|
||||
|
||||
private static final long serialVersionUID = -718827662;
|
||||
private static final long serialVersionUID = -1177927025;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class ProcparmsRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.db2.syscat.tables.records.ProcparmsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1611881034;
|
||||
private static final long serialVersionUID = 256519527;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class ReferencesRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.db2.syscat.tables.records.ReferencesRecord> {
|
||||
|
||||
private static final long serialVersionUID = -216343070;
|
||||
private static final long serialVersionUID = -1968351617;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SequencesRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.db2.syscat.tables.records.SequencesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 627405406;
|
||||
private static final long serialVersionUID = -1329221445;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TabconstRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.db2.syscat.tables.records.TabconstRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1029282352;
|
||||
private static final long serialVersionUID = 327391949;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.db2.syscat.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TablesRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.db2.syscat.tables.records.TablesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 325749960;
|
||||
private static final long serialVersionUID = -1586880347;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.derby.sys;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Sys extends org.jooq.impl.SchemaImpl {
|
||||
|
||||
private static final long serialVersionUID = -1524141556;
|
||||
private static final long serialVersionUID = 106419487;
|
||||
|
||||
/**
|
||||
* The singleton instance of SYS
|
||||
@ -27,12 +27,12 @@ public class Sys extends org.jooq.impl.SchemaImpl {
|
||||
@Override
|
||||
public final java.util.List<org.jooq.Table<?>> getTables() {
|
||||
return java.util.Arrays.<org.jooq.Table<?>>asList(
|
||||
org.jooq.util.derby.sys.tables.Sysconglomerates.SYSCONGLOMERATES,
|
||||
org.jooq.util.derby.sys.tables.Systables.SYSTABLES,
|
||||
org.jooq.util.derby.sys.tables.Syscolumns.SYSCOLUMNS,
|
||||
org.jooq.util.derby.sys.tables.Sysschemas.SYSSCHEMAS,
|
||||
org.jooq.util.derby.sys.tables.Sysconglomerates.SYSCONGLOMERATES,
|
||||
org.jooq.util.derby.sys.tables.Sysconstraints.SYSCONSTRAINTS,
|
||||
org.jooq.util.derby.sys.tables.Syskeys.SYSKEYS,
|
||||
org.jooq.util.derby.sys.tables.Syssequences.SYSSEQUENCES);
|
||||
org.jooq.util.derby.sys.tables.Sysschemas.SYSSCHEMAS,
|
||||
org.jooq.util.derby.sys.tables.Syssequences.SYSSEQUENCES,
|
||||
org.jooq.util.derby.sys.tables.Systables.SYSTABLES);
|
||||
}
|
||||
}
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.derby.sys;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SysFactory extends org.jooq.util.derby.DerbyFactory {
|
||||
|
||||
private static final long serialVersionUID = -8140297;
|
||||
private static final long serialVersionUID = 877278380;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
@ -22,12 +22,12 @@ public class SysFactory extends org.jooq.util.derby.DerbyFactory {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a factory with a connection and a schema mapping
|
||||
* Create a factory with a connection and some settings
|
||||
*
|
||||
* @param connection The connection to use with objects created from this factory
|
||||
* @param mapping The schema mapping to use with objects created from this factory
|
||||
* @param settings The settings to apply to objects created from this factory
|
||||
*/
|
||||
public SysFactory(java.sql.Connection connection, org.jooq.SchemaMapping mapping) {
|
||||
super(connection, mapping);
|
||||
public SysFactory(java.sql.Connection connection, org.jooq.conf.Settings settings) {
|
||||
super(connection, settings);
|
||||
}
|
||||
}
|
||||
|
||||
@ -8,29 +8,19 @@ package org.jooq.util.derby.sys;
|
||||
*
|
||||
* Convenience access to all tables in SYS
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public final class Tables {
|
||||
|
||||
/**
|
||||
* The table SYS.SYSCONGLOMERATES
|
||||
*/
|
||||
public static org.jooq.util.derby.sys.tables.Sysconglomerates SYSCONGLOMERATES = org.jooq.util.derby.sys.tables.Sysconglomerates.SYSCONGLOMERATES;
|
||||
|
||||
/**
|
||||
* The table SYS.SYSTABLES
|
||||
*/
|
||||
public static org.jooq.util.derby.sys.tables.Systables SYSTABLES = org.jooq.util.derby.sys.tables.Systables.SYSTABLES;
|
||||
|
||||
/**
|
||||
* The table SYS.SYSCOLUMNS
|
||||
*/
|
||||
public static org.jooq.util.derby.sys.tables.Syscolumns SYSCOLUMNS = org.jooq.util.derby.sys.tables.Syscolumns.SYSCOLUMNS;
|
||||
|
||||
/**
|
||||
* The table SYS.SYSSCHEMAS
|
||||
* The table SYS.SYSCONGLOMERATES
|
||||
*/
|
||||
public static org.jooq.util.derby.sys.tables.Sysschemas SYSSCHEMAS = org.jooq.util.derby.sys.tables.Sysschemas.SYSSCHEMAS;
|
||||
public static org.jooq.util.derby.sys.tables.Sysconglomerates SYSCONGLOMERATES = org.jooq.util.derby.sys.tables.Sysconglomerates.SYSCONGLOMERATES;
|
||||
|
||||
/**
|
||||
* The table SYS.SYSCONSTRAINTS
|
||||
@ -42,11 +32,21 @@ public final class Tables {
|
||||
*/
|
||||
public static org.jooq.util.derby.sys.tables.Syskeys SYSKEYS = org.jooq.util.derby.sys.tables.Syskeys.SYSKEYS;
|
||||
|
||||
/**
|
||||
* The table SYS.SYSSCHEMAS
|
||||
*/
|
||||
public static org.jooq.util.derby.sys.tables.Sysschemas SYSSCHEMAS = org.jooq.util.derby.sys.tables.Sysschemas.SYSSCHEMAS;
|
||||
|
||||
/**
|
||||
* The table SYS.SYSSEQUENCES
|
||||
*/
|
||||
public static org.jooq.util.derby.sys.tables.Syssequences SYSSEQUENCES = org.jooq.util.derby.sys.tables.Syssequences.SYSSEQUENCES;
|
||||
|
||||
/**
|
||||
* The table SYS.SYSTABLES
|
||||
*/
|
||||
public static org.jooq.util.derby.sys.tables.Systables SYSTABLES = org.jooq.util.derby.sys.tables.Systables.SYSTABLES;
|
||||
|
||||
/**
|
||||
* No instances
|
||||
*/
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.derby.sys.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Syscolumns extends org.jooq.impl.TableImpl<org.jooq.util.derby.sys.tables.records.SyscolumnsRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1385809218;
|
||||
private static final long serialVersionUID = 236864795;
|
||||
|
||||
/**
|
||||
* The singleton instance of SYSCOLUMNS
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.derby.sys.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Sysconglomerates extends org.jooq.impl.TableImpl<org.jooq.util.derby.sys.tables.records.SysconglomeratesRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1830489851;
|
||||
private static final long serialVersionUID = 153972552;
|
||||
|
||||
/**
|
||||
* The singleton instance of SYSCONGLOMERATES
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.derby.sys.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Sysconstraints extends org.jooq.impl.TableImpl<org.jooq.util.derby.sys.tables.records.SysconstraintsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1473868829;
|
||||
private static final long serialVersionUID = 536740730;
|
||||
|
||||
/**
|
||||
* The singleton instance of SYSCONSTRAINTS
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.derby.sys.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Syskeys extends org.jooq.impl.TableImpl<org.jooq.util.derby.sys.tables.records.SyskeysRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1960591831;
|
||||
private static final long serialVersionUID = -887335142;
|
||||
|
||||
/**
|
||||
* The singleton instance of SYSKEYS
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.derby.sys.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Sysschemas extends org.jooq.impl.TableImpl<org.jooq.util.derby.sys.tables.records.SysschemasRecord> {
|
||||
|
||||
private static final long serialVersionUID = 832002111;
|
||||
private static final long serialVersionUID = 272512130;
|
||||
|
||||
/**
|
||||
* The singleton instance of SYSSCHEMAS
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.derby.sys.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Syssequences extends org.jooq.impl.TableImpl<org.jooq.util.derby.sys.tables.records.SyssequencesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 890749480;
|
||||
private static final long serialVersionUID = -2108242773;
|
||||
|
||||
/**
|
||||
* The singleton instance of SYSSEQUENCES
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.derby.sys.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Systables extends org.jooq.impl.TableImpl<org.jooq.util.derby.sys.tables.records.SystablesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1357425667;
|
||||
private static final long serialVersionUID = 415788230;
|
||||
|
||||
/**
|
||||
* The singleton instance of SYSTABLES
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.derby.sys.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SyscolumnsRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.derby.sys.tables.records.SyscolumnsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 235754968;
|
||||
private static final long serialVersionUID = 1672794293;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.derby.sys.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SysconglomeratesRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.derby.sys.tables.records.SysconglomeratesRecord> {
|
||||
|
||||
private static final long serialVersionUID = -583641428;
|
||||
private static final long serialVersionUID = 818266633;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.derby.sys.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SysconstraintsRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.derby.sys.tables.records.SysconstraintsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 270536728;
|
||||
private static final long serialVersionUID = -744839563;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.derby.sys.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SyskeysRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.derby.sys.tables.records.SyskeysRecord> {
|
||||
|
||||
private static final long serialVersionUID = 223628424;
|
||||
private static final long serialVersionUID = -1244601691;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.derby.sys.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SysschemasRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.derby.sys.tables.records.SysschemasRecord> {
|
||||
|
||||
private static final long serialVersionUID = -158855894;
|
||||
private static final long serialVersionUID = -1863728825;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.derby.sys.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SyssequencesRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.derby.sys.tables.records.SyssequencesRecord> {
|
||||
|
||||
private static final long serialVersionUID = -765356402;
|
||||
private static final long serialVersionUID = 354466539;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.derby.sys.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SystablesRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.derby.sys.tables.records.SystablesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 2012152928;
|
||||
private static final long serialVersionUID = 1593493885;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.h2.information_schema;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class InformationSchema extends org.jooq.impl.SchemaImpl {
|
||||
|
||||
private static final long serialVersionUID = 42747060;
|
||||
private static final long serialVersionUID = 1426927287;
|
||||
|
||||
/**
|
||||
* The singleton instance of INFORMATION_SCHEMA
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.h2.information_schema;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class InformationSchemaFactory extends org.jooq.util.h2.H2Factory {
|
||||
|
||||
private static final long serialVersionUID = 757478780;
|
||||
private static final long serialVersionUID = 1633879793;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
@ -22,12 +22,12 @@ public class InformationSchemaFactory extends org.jooq.util.h2.H2Factory {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a factory with a connection and a schema mapping
|
||||
* Create a factory with a connection and some settings
|
||||
*
|
||||
* @param connection The connection to use with objects created from this factory
|
||||
* @param mapping The schema mapping to use with objects created from this factory
|
||||
* @param settings The settings to apply to objects created from this factory
|
||||
*/
|
||||
public InformationSchemaFactory(java.sql.Connection connection, org.jooq.SchemaMapping mapping) {
|
||||
super(connection, mapping);
|
||||
public InformationSchemaFactory(java.sql.Connection connection, org.jooq.conf.Settings settings) {
|
||||
super(connection, settings);
|
||||
}
|
||||
}
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.util.h2.information_schema;
|
||||
*
|
||||
* Convenience access to all tables in INFORMATION_SCHEMA
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public final class Tables {
|
||||
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.h2.information_schema.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Columns extends org.jooq.impl.TableImpl<org.jooq.util.h2.information_schema.tables.records.ColumnsRecord> {
|
||||
|
||||
private static final long serialVersionUID = -731741434;
|
||||
private static final long serialVersionUID = 1397722659;
|
||||
|
||||
/**
|
||||
* The singleton instance of COLUMNS
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.h2.information_schema.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Constraints extends org.jooq.impl.TableImpl<org.jooq.util.h2.information_schema.tables.records.ConstraintsRecord> {
|
||||
|
||||
private static final long serialVersionUID = -163185243;
|
||||
private static final long serialVersionUID = 1972451304;
|
||||
|
||||
/**
|
||||
* The singleton instance of CONSTRAINTS
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.h2.information_schema.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class CrossReferences extends org.jooq.impl.TableImpl<org.jooq.util.h2.information_schema.tables.records.CrossReferencesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1157002390;
|
||||
private static final long serialVersionUID = 1429925529;
|
||||
|
||||
/**
|
||||
* The singleton instance of CROSS_REFERENCES
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.h2.information_schema.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FunctionAliases extends org.jooq.impl.TableImpl<org.jooq.util.h2.information_schema.tables.records.FunctionAliasesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 564250853;
|
||||
private static final long serialVersionUID = -1690018008;
|
||||
|
||||
/**
|
||||
* The singleton instance of FUNCTION_ALIASES
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.h2.information_schema.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FunctionColumns extends org.jooq.impl.TableImpl<org.jooq.util.h2.information_schema.tables.records.FunctionColumnsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1610837782;
|
||||
private static final long serialVersionUID = 2061240115;
|
||||
|
||||
/**
|
||||
* The singleton instance of FUNCTION_COLUMNS
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.h2.information_schema.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Sequences extends org.jooq.impl.TableImpl<org.jooq.util.h2.information_schema.tables.records.SequencesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 377282336;
|
||||
private static final long serialVersionUID = 123712035;
|
||||
|
||||
/**
|
||||
* The singleton instance of SEQUENCES
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.h2.information_schema.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Tables extends org.jooq.impl.TableImpl<org.jooq.util.h2.information_schema.tables.records.TablesRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1673004421;
|
||||
private static final long serialVersionUID = 751152958;
|
||||
|
||||
/**
|
||||
* The singleton instance of TABLES
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.h2.information_schema.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TypeInfo extends org.jooq.impl.TableImpl<org.jooq.util.h2.information_schema.tables.records.TypeInfoRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1582765698;
|
||||
private static final long serialVersionUID = 1451523167;
|
||||
|
||||
/**
|
||||
* The singleton instance of TYPE_INFO
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.h2.information_schema.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class ColumnsRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.h2.information_schema.tables.records.ColumnsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1853010133;
|
||||
private static final long serialVersionUID = 951330546;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.h2.information_schema.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class ConstraintsRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.h2.information_schema.tables.records.ConstraintsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1657819907;
|
||||
private static final long serialVersionUID = 476855456;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.h2.information_schema.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class CrossReferencesRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.h2.information_schema.tables.records.CrossReferencesRecord> {
|
||||
|
||||
private static final long serialVersionUID = -2081975328;
|
||||
private static final long serialVersionUID = 1645258915;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.h2.information_schema.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FunctionAliasesRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.h2.information_schema.tables.records.FunctionAliasesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 2040682600;
|
||||
private static final long serialVersionUID = -1646345109;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.h2.information_schema.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FunctionColumnsRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.h2.information_schema.tables.records.FunctionColumnsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 890991564;
|
||||
private static final long serialVersionUID = -1092021745;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.h2.information_schema.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SequencesRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.h2.information_schema.tables.records.SequencesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 73674527;
|
||||
private static final long serialVersionUID = -1470657668;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.h2.information_schema.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TablesRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.h2.information_schema.tables.records.TablesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1179061141;
|
||||
private static final long serialVersionUID = 1358460530;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.h2.information_schema.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TypeInfoRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.h2.information_schema.tables.records.TypeInfoRecord> {
|
||||
|
||||
private static final long serialVersionUID = 995660642;
|
||||
private static final long serialVersionUID = 1140914085;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class InformationSchema extends org.jooq.impl.SchemaImpl {
|
||||
|
||||
private static final long serialVersionUID = 738749783;
|
||||
private static final long serialVersionUID = -966123148;
|
||||
|
||||
/**
|
||||
* The singleton instance of INFORMATION_SCHEMA
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class InformationSchemaFactory extends org.jooq.util.hsqldb.HSQLDBFactory {
|
||||
|
||||
private static final long serialVersionUID = 1705827458;
|
||||
private static final long serialVersionUID = 2121119607;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
@ -22,12 +22,12 @@ public class InformationSchemaFactory extends org.jooq.util.hsqldb.HSQLDBFactory
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a factory with a connection and a schema mapping
|
||||
* Create a factory with a connection and some settings
|
||||
*
|
||||
* @param connection The connection to use with objects created from this factory
|
||||
* @param mapping The schema mapping to use with objects created from this factory
|
||||
* @param settings The settings to apply to objects created from this factory
|
||||
*/
|
||||
public InformationSchemaFactory(java.sql.Connection connection, org.jooq.SchemaMapping mapping) {
|
||||
super(connection, mapping);
|
||||
public InformationSchemaFactory(java.sql.Connection connection, org.jooq.conf.Settings settings) {
|
||||
super(connection, settings);
|
||||
}
|
||||
}
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.util.hsqldb.information_schema;
|
||||
*
|
||||
* Convenience access to all tables in INFORMATION_SCHEMA
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public final class Tables {
|
||||
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Columns extends org.jooq.impl.TableImpl<org.jooq.util.hsqldb.information_schema.tables.records.ColumnsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 702932321;
|
||||
private static final long serialVersionUID = -1106144642;
|
||||
|
||||
/**
|
||||
* The singleton instance of COLUMNS
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class ConstraintColumnUsage extends org.jooq.impl.TableImpl<org.jooq.util.hsqldb.information_schema.tables.records.ConstraintColumnUsageRecord> {
|
||||
|
||||
private static final long serialVersionUID = -804797529;
|
||||
private static final long serialVersionUID = -100387158;
|
||||
|
||||
/**
|
||||
* The singleton instance of CONSTRAINT_COLUMN_USAGE
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class ElementTypes extends org.jooq.impl.TableImpl<org.jooq.util.hsqldb.information_schema.tables.records.ElementTypesRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1927194514;
|
||||
private static final long serialVersionUID = -2063781429;
|
||||
|
||||
/**
|
||||
* The singleton instance of ELEMENT_TYPES
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class KeyColumnUsage extends org.jooq.impl.TableImpl<org.jooq.util.hsqldb.information_schema.tables.records.KeyColumnUsageRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1839332903;
|
||||
private static final long serialVersionUID = 634053302;
|
||||
|
||||
/**
|
||||
* The singleton instance of KEY_COLUMN_USAGE
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Parameters extends org.jooq.impl.TableImpl<org.jooq.util.hsqldb.information_schema.tables.records.ParametersRecord> {
|
||||
|
||||
private static final long serialVersionUID = 89790720;
|
||||
private static final long serialVersionUID = -348318627;
|
||||
|
||||
/**
|
||||
* The singleton instance of PARAMETERS
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class ReferentialConstraints extends org.jooq.impl.TableImpl<org.jooq.util.hsqldb.information_schema.tables.records.ReferentialConstraintsRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1994542632;
|
||||
private static final long serialVersionUID = -1891513099;
|
||||
|
||||
/**
|
||||
* The singleton instance of REFERENTIAL_CONSTRAINTS
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Routines extends org.jooq.impl.TableImpl<org.jooq.util.hsqldb.information_schema.tables.records.RoutinesRecord> {
|
||||
|
||||
private static final long serialVersionUID = -236701506;
|
||||
private static final long serialVersionUID = 1977923995;
|
||||
|
||||
/**
|
||||
* The singleton instance of ROUTINES
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Sequences extends org.jooq.impl.TableImpl<org.jooq.util.hsqldb.information_schema.tables.records.SequencesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 197124762;
|
||||
private static final long serialVersionUID = -101399241;
|
||||
|
||||
/**
|
||||
* The singleton instance of SEQUENCES
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TableConstraints extends org.jooq.impl.TableImpl<org.jooq.util.hsqldb.information_schema.tables.records.TableConstraintsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 573735269;
|
||||
private static final long serialVersionUID = 1834790466;
|
||||
|
||||
/**
|
||||
* The singleton instance of TABLE_CONSTRAINTS
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Tables extends org.jooq.impl.TableImpl<org.jooq.util.hsqldb.information_schema.tables.records.TablesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 275281729;
|
||||
private static final long serialVersionUID = -17747068;
|
||||
|
||||
/**
|
||||
* The singleton instance of TABLES
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class ColumnsRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.hsqldb.information_schema.tables.records.ColumnsRecord> {
|
||||
|
||||
private static final long serialVersionUID = -2040264425;
|
||||
private static final long serialVersionUID = 2113140084;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class ConstraintColumnUsageRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.hsqldb.information_schema.tables.records.ConstraintColumnUsageRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1140323331;
|
||||
private static final long serialVersionUID = 1062558624;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class ElementTypesRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.hsqldb.information_schema.tables.records.ElementTypesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 353151452;
|
||||
private static final long serialVersionUID = -1749842529;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class KeyColumnUsageRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.hsqldb.information_schema.tables.records.KeyColumnUsageRecord> {
|
||||
|
||||
private static final long serialVersionUID = 764745787;
|
||||
private static final long serialVersionUID = 991879192;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class ParametersRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.hsqldb.information_schema.tables.records.ParametersRecord> {
|
||||
|
||||
private static final long serialVersionUID = -831060169;
|
||||
private static final long serialVersionUID = -1041297836;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class ReferentialConstraintsRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.hsqldb.information_schema.tables.records.ReferentialConstraintsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1767959740;
|
||||
private static final long serialVersionUID = -2101518657;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class RoutinesRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.hsqldb.information_schema.tables.records.RoutinesRecord> {
|
||||
|
||||
private static final long serialVersionUID = -302187373;
|
||||
private static final long serialVersionUID = 294719472;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SequencesRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.hsqldb.information_schema.tables.records.SequencesRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1683265811;
|
||||
private static final long serialVersionUID = -1555394742;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TableConstraintsRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.hsqldb.information_schema.tables.records.TableConstraintsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1851469100;
|
||||
private static final long serialVersionUID = -1904018577;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.hsqldb.information_schema.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TablesRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.hsqldb.information_schema.tables.records.TablesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1385748877;
|
||||
private static final long serialVersionUID = 1475190058;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.ingres.ingres;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class $ingres extends org.jooq.impl.SchemaImpl {
|
||||
|
||||
private static final long serialVersionUID = -1852298891;
|
||||
private static final long serialVersionUID = -1990474312;
|
||||
|
||||
/**
|
||||
* The singleton instance of $ingres
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.util.ingres.ingres;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class $ingresFactory extends org.jooq.util.ingres.IngresFactory {
|
||||
|
||||
private static final long serialVersionUID = 27555303;
|
||||
private static final long serialVersionUID = 745113436;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
@ -22,12 +22,12 @@ public class $ingresFactory extends org.jooq.util.ingres.IngresFactory {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a factory with a connection and a schema mapping
|
||||
* Create a factory with a connection and some settings
|
||||
*
|
||||
* @param connection The connection to use with objects created from this factory
|
||||
* @param mapping The schema mapping to use with objects created from this factory
|
||||
* @param settings The settings to apply to objects created from this factory
|
||||
*/
|
||||
public $ingresFactory(java.sql.Connection connection, org.jooq.SchemaMapping mapping) {
|
||||
super(connection, mapping);
|
||||
public $ingresFactory(java.sql.Connection connection, org.jooq.conf.Settings settings) {
|
||||
super(connection, settings);
|
||||
}
|
||||
}
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.util.ingres.ingres;
|
||||
*
|
||||
* Convenience access to all tables in $ingres
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public final class Tables {
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user