All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jooq.util.mysql.mysql.tables.Proc Maven / Gradle / Ivy

There is a newer version: 3.19.16
Show newest version
/**
 * This class is generated by jOOQ
 */
package org.jooq.util.mysql.mysql.tables;

/**
 * This class is generated by jOOQ.
 *
 * Stored Procedures
 */
@javax.annotation.Generated(value    = { "http://www.jooq.org", "3.4.0" },
                            comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Proc extends org.jooq.impl.TableImpl {

	private static final long serialVersionUID = 1513690807;

	/**
	 * The singleton instance of mysql.proc
	 */
	public static final org.jooq.util.mysql.mysql.tables.Proc PROC = new org.jooq.util.mysql.mysql.tables.Proc();

	/**
	 * The class holding records for this type
	 */
	@Override
	public java.lang.Class getRecordType() {
		return org.jooq.Record.class;
	}

	/**
	 * The column mysql.proc.db.
	 */
	public static final org.jooq.TableField DB = createField("db", org.jooq.impl.SQLDataType.CHAR.length(64).nullable(false).defaulted(true), PROC, "");

	/**
	 * The column mysql.proc.name.
	 */
	public static final org.jooq.TableField NAME = createField("name", org.jooq.impl.SQLDataType.CHAR.length(64).nullable(false).defaulted(true), PROC, "");

	/**
	 * The column mysql.proc.type.
	 */
	public static final org.jooq.TableField TYPE = createField("type", org.jooq.util.mysql.MySQLDataType.VARCHAR.asEnumDataType(org.jooq.util.mysql.mysql.enums.ProcType.class), PROC, "");

	/**
	 * The column mysql.proc.specific_name.
	 */
	public static final org.jooq.TableField SPECIFIC_NAME = createField("specific_name", org.jooq.impl.SQLDataType.CHAR.length(64).nullable(false).defaulted(true), PROC, "");

	/**
	 * The column mysql.proc.language.
	 */
	public static final org.jooq.TableField LANGUAGE = createField("language", org.jooq.util.mysql.MySQLDataType.VARCHAR.asEnumDataType(org.jooq.util.mysql.mysql.enums.ProcLanguage.class), PROC, "");

	/**
	 * The column mysql.proc.sql_data_access.
	 */
	public static final org.jooq.TableField SQL_DATA_ACCESS = createField("sql_data_access", org.jooq.util.mysql.MySQLDataType.VARCHAR.asEnumDataType(org.jooq.util.mysql.mysql.enums.ProcSqlDataAccess.class), PROC, "");

	/**
	 * The column mysql.proc.is_deterministic.
	 */
	public static final org.jooq.TableField IS_DETERMINISTIC = createField("is_deterministic", org.jooq.util.mysql.MySQLDataType.VARCHAR.asEnumDataType(org.jooq.util.mysql.mysql.enums.ProcIsDeterministic.class), PROC, "");

	/**
	 * The column mysql.proc.security_type.
	 */
	public static final org.jooq.TableField SECURITY_TYPE = createField("security_type", org.jooq.util.mysql.MySQLDataType.VARCHAR.asEnumDataType(org.jooq.util.mysql.mysql.enums.ProcSecurityType.class), PROC, "");

	/**
	 * The column mysql.proc.param_list.
	 */
	public static final org.jooq.TableField PARAM_LIST = createField("param_list", org.jooq.impl.SQLDataType.BLOB.length(65535).nullable(false), PROC, "");

	/**
	 * The column mysql.proc.returns.
	 */
	public static final org.jooq.TableField RETURNS = createField("returns", org.jooq.impl.SQLDataType.BLOB.nullable(false), PROC, "");

	/**
	 * The column mysql.proc.body.
	 */
	public static final org.jooq.TableField BODY = createField("body", org.jooq.impl.SQLDataType.BLOB.nullable(false), PROC, "");

	/**
	 * The column mysql.proc.definer.
	 */
	public static final org.jooq.TableField DEFINER = createField("definer", org.jooq.impl.SQLDataType.CHAR.length(77).nullable(false).defaulted(true), PROC, "");

	/**
	 * The column mysql.proc.created.
	 */
	public static final org.jooq.TableField CREATED = createField("created", org.jooq.impl.SQLDataType.TIMESTAMP.nullable(false).defaulted(true), PROC, "");

	/**
	 * The column mysql.proc.modified.
	 */
	public static final org.jooq.TableField MODIFIED = createField("modified", org.jooq.impl.SQLDataType.TIMESTAMP.nullable(false).defaulted(true), PROC, "");

	/**
	 * The column mysql.proc.sql_mode.
	 */
	public static final org.jooq.TableField SQL_MODE = createField("sql_mode", org.jooq.impl.SQLDataType.VARCHAR.length(478).nullable(false).defaulted(true), PROC, "");

	/**
	 * The column mysql.proc.comment.
	 */
	public static final org.jooq.TableField COMMENT = createField("comment", org.jooq.impl.SQLDataType.CLOB.length(65535).nullable(false), PROC, "");

	/**
	 * The column mysql.proc.character_set_client.
	 */
	public static final org.jooq.TableField CHARACTER_SET_CLIENT = createField("character_set_client", org.jooq.impl.SQLDataType.CHAR.length(32), PROC, "");

	/**
	 * The column mysql.proc.collation_connection.
	 */
	public static final org.jooq.TableField COLLATION_CONNECTION = createField("collation_connection", org.jooq.impl.SQLDataType.CHAR.length(32), PROC, "");

	/**
	 * The column mysql.proc.db_collation.
	 */
	public static final org.jooq.TableField DB_COLLATION = createField("db_collation", org.jooq.impl.SQLDataType.CHAR.length(32), PROC, "");

	/**
	 * The column mysql.proc.body_utf8.
	 */
	public static final org.jooq.TableField BODY_UTF8 = createField("body_utf8", org.jooq.impl.SQLDataType.BLOB, PROC, "");

	/**
	 * No further instances allowed
	 */
	private Proc() {
		this("proc", null);
	}

	private Proc(java.lang.String alias, org.jooq.Table aliased) {
		this(alias, aliased, null);
	}

	private Proc(java.lang.String alias, org.jooq.Table aliased, org.jooq.Field[] parameters) {
		super(alias, org.jooq.util.mysql.mysql.Mysql.MYSQL, aliased, parameters, "Stored Procedures");
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy