org.jooq.util.mysql.mysql.tables.Proc Maven / Gradle / Ivy
/**
* 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", "2.6.0"},
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings("all")
public class Proc extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = 1258882367;
/**
* 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 table column mysql.proc.db
*
* This column is part of the table's PRIMARY KEY
*/
public static final org.jooq.TableField DB = createField("db", org.jooq.impl.SQLDataType.CHAR, PROC);
/**
* The table column mysql.proc.name
*
* This column is part of the table's PRIMARY KEY
*/
public static final org.jooq.TableField NAME = createField("name", org.jooq.impl.SQLDataType.CHAR, PROC);
/**
* The table column mysql.proc.type
*
* This column is part of the table's PRIMARY KEY
*/
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 table column mysql.proc.specific_name
*/
public static final org.jooq.TableField SPECIFIC_NAME = createField("specific_name", org.jooq.impl.SQLDataType.CHAR, PROC);
/**
* The table 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 table 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 table 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 table 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 table column mysql.proc.param_list
*/
public static final org.jooq.TableField PARAM_LIST = createField("param_list", org.jooq.impl.SQLDataType.BLOB, PROC);
/**
* The table column mysql.proc.returns
*/
public static final org.jooq.TableField RETURNS = createField("returns", org.jooq.impl.SQLDataType.BLOB, PROC);
/**
* The table column mysql.proc.body
*/
public static final org.jooq.TableField BODY = createField("body", org.jooq.impl.SQLDataType.BLOB, PROC);
/**
* The table column mysql.proc.definer
*/
public static final org.jooq.TableField DEFINER = createField("definer", org.jooq.impl.SQLDataType.CHAR, PROC);
/**
* The table column mysql.proc.created
*/
public static final org.jooq.TableField CREATED = createField("created", org.jooq.impl.SQLDataType.TIMESTAMP, PROC);
/**
* The table column mysql.proc.modified
*/
public static final org.jooq.TableField MODIFIED = createField("modified", org.jooq.impl.SQLDataType.TIMESTAMP, PROC);
/**
* The table column mysql.proc.sql_mode
*/
public static final org.jooq.TableField SQL_MODE = createField("sql_mode", org.jooq.impl.SQLDataType.VARCHAR, PROC);
/**
* The table column mysql.proc.comment
*/
public static final org.jooq.TableField COMMENT = createField("comment", org.jooq.impl.SQLDataType.CLOB, PROC);
/**
* The table column mysql.proc.character_set_client
*/
public static final org.jooq.TableField CHARACTER_SET_CLIENT = createField("character_set_client", org.jooq.impl.SQLDataType.CHAR, PROC);
/**
* The table column mysql.proc.collation_connection
*/
public static final org.jooq.TableField COLLATION_CONNECTION = createField("collation_connection", org.jooq.impl.SQLDataType.CHAR, PROC);
/**
* The table column mysql.proc.db_collation
*/
public static final org.jooq.TableField DB_COLLATION = createField("db_collation", org.jooq.impl.SQLDataType.CHAR, PROC);
/**
* The table 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() {
super("proc", org.jooq.util.mysql.mysql.Mysql.MYSQL);
}
}