/** * This class is generated by jOOQ */ package org.jooq.util.mysql.information_schema.tables; /** * This class is generated by jOOQ. */ @javax.annotation.Generated(value = { "http://www.jooq.org", "3.5.0" }, comments = "This class is generated by jOOQ") @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class Parameters extends org.jooq.impl.TableImpl<org.jooq.Record> { private static final long serialVersionUID = 1665633877; /** * The singleton instance of <code>information_schema.PARAMETERS</code> */ public static final org.jooq.util.mysql.information_schema.tables.Parameters PARAMETERS = new org.jooq.util.mysql.information_schema.tables.Parameters(); /** * The class holding records for this type */ @Override public java.lang.Class<org.jooq.Record> getRecordType() { return org.jooq.Record.class; } /** * The column <code>information_schema.PARAMETERS.SPECIFIC_CATALOG</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> SPECIFIC_CATALOG = createField("SPECIFIC_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512).nullable(false).defaulted(true), PARAMETERS, ""); /** * The column <code>information_schema.PARAMETERS.SPECIFIC_SCHEMA</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> SPECIFIC_SCHEMA = createField("SPECIFIC_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), PARAMETERS, ""); /** * The column <code>information_schema.PARAMETERS.SPECIFIC_NAME</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> SPECIFIC_NAME = createField("SPECIFIC_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), PARAMETERS, ""); /** * The column <code>information_schema.PARAMETERS.ORDINAL_POSITION</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.Integer> ORDINAL_POSITION = createField("ORDINAL_POSITION", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), PARAMETERS, ""); /** * The column <code>information_schema.PARAMETERS.PARAMETER_MODE</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> PARAMETER_MODE = createField("PARAMETER_MODE", org.jooq.impl.SQLDataType.VARCHAR.length(5), PARAMETERS, ""); /** * The column <code>information_schema.PARAMETERS.PARAMETER_NAME</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> PARAMETER_NAME = createField("PARAMETER_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), PARAMETERS, ""); /** * The column <code>information_schema.PARAMETERS.DATA_TYPE</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> DATA_TYPE = createField("DATA_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), PARAMETERS, ""); /** * The column <code>information_schema.PARAMETERS.CHARACTER_MAXIMUM_LENGTH</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.Integer> CHARACTER_MAXIMUM_LENGTH = createField("CHARACTER_MAXIMUM_LENGTH", org.jooq.impl.SQLDataType.INTEGER, PARAMETERS, ""); /** * The column <code>information_schema.PARAMETERS.CHARACTER_OCTET_LENGTH</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.Integer> CHARACTER_OCTET_LENGTH = createField("CHARACTER_OCTET_LENGTH", org.jooq.impl.SQLDataType.INTEGER, PARAMETERS, ""); /** * The column <code>information_schema.PARAMETERS.NUMERIC_PRECISION</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.Integer> NUMERIC_PRECISION = createField("NUMERIC_PRECISION", org.jooq.impl.SQLDataType.INTEGER, PARAMETERS, ""); /** * The column <code>information_schema.PARAMETERS.NUMERIC_SCALE</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.Integer> NUMERIC_SCALE = createField("NUMERIC_SCALE", org.jooq.impl.SQLDataType.INTEGER, PARAMETERS, ""); /** * The column <code>information_schema.PARAMETERS.CHARACTER_SET_NAME</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CHARACTER_SET_NAME = createField("CHARACTER_SET_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), PARAMETERS, ""); /** * The column <code>information_schema.PARAMETERS.COLLATION_NAME</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> COLLATION_NAME = createField("COLLATION_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), PARAMETERS, ""); /** * The column <code>information_schema.PARAMETERS.DTD_IDENTIFIER</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> DTD_IDENTIFIER = createField("DTD_IDENTIFIER", org.jooq.impl.SQLDataType.CLOB.nullable(false), PARAMETERS, ""); /** * The column <code>information_schema.PARAMETERS.ROUTINE_TYPE</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> ROUTINE_TYPE = createField("ROUTINE_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(9).nullable(false).defaulted(true), PARAMETERS, ""); /** * No further instances allowed */ private Parameters() { this("PARAMETERS", null); } private Parameters(java.lang.String alias, org.jooq.Table<org.jooq.Record> aliased) { this(alias, aliased, null); } private Parameters(java.lang.String alias, org.jooq.Table<org.jooq.Record> aliased, org.jooq.Field<?>[] parameters) { super(alias, org.jooq.util.mysql.information_schema.InformationSchema.INFORMATION_SCHEMA, aliased, parameters, ""); } }