org.jooq.util.mysql.mysql.tables.ProcsPriv Maven / Gradle / Ivy
/**
* This class is generated by jOOQ
*/
package org.jooq.util.mysql.mysql.tables;
/**
* This class is generated by jOOQ.
*
* Procedure privileges
*/
@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 ProcsPriv extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = -1879514011;
/**
* The singleton instance of mysql.procs_priv
*/
public static final org.jooq.util.mysql.mysql.tables.ProcsPriv PROCS_PRIV = new org.jooq.util.mysql.mysql.tables.ProcsPriv();
/**
* The class holding records for this type
*/
@Override
public java.lang.Class getRecordType() {
return org.jooq.Record.class;
}
/**
* The column mysql.procs_priv.Host
.
*/
public static final org.jooq.TableField HOST = createField("Host", org.jooq.impl.SQLDataType.CHAR.length(60).nullable(false).defaulted(true), PROCS_PRIV, "");
/**
* The column mysql.procs_priv.Db
.
*/
public static final org.jooq.TableField DB = createField("Db", org.jooq.impl.SQLDataType.CHAR.length(64).nullable(false).defaulted(true), PROCS_PRIV, "");
/**
* The column mysql.procs_priv.User
.
*/
public static final org.jooq.TableField USER = createField("User", org.jooq.impl.SQLDataType.CHAR.length(16).nullable(false).defaulted(true), PROCS_PRIV, "");
/**
* The column mysql.procs_priv.Routine_name
.
*/
public static final org.jooq.TableField ROUTINE_NAME = createField("Routine_name", org.jooq.impl.SQLDataType.CHAR.length(64).nullable(false).defaulted(true), PROCS_PRIV, "");
/**
* The column mysql.procs_priv.Routine_type
.
*/
public static final org.jooq.TableField ROUTINE_TYPE = createField("Routine_type", org.jooq.util.mysql.MySQLDataType.VARCHAR.asEnumDataType(org.jooq.util.mysql.mysql.enums.ProcsPrivRoutineType.class), PROCS_PRIV, "");
/**
* The column mysql.procs_priv.Grantor
.
*/
public static final org.jooq.TableField GRANTOR = createField("Grantor", org.jooq.impl.SQLDataType.CHAR.length(77).nullable(false).defaulted(true), PROCS_PRIV, "");
/**
* The column mysql.procs_priv.Proc_priv
.
*/
public static final org.jooq.TableField PROC_PRIV = createField("Proc_priv", org.jooq.impl.SQLDataType.VARCHAR.length(27).nullable(false).defaulted(true), PROCS_PRIV, "");
/**
* The column mysql.procs_priv.Timestamp
.
*/
public static final org.jooq.TableField TIMESTAMP = createField("Timestamp", org.jooq.impl.SQLDataType.TIMESTAMP.nullable(false).defaulted(true), PROCS_PRIV, "");
/**
* No further instances allowed
*/
private ProcsPriv() {
this("procs_priv", null);
}
private ProcsPriv(java.lang.String alias, org.jooq.Table aliased) {
this(alias, aliased, null);
}
private ProcsPriv(java.lang.String alias, org.jooq.Table aliased, org.jooq.Field>[] parameters) {
super(alias, org.jooq.util.mysql.mysql.Mysql.MYSQL, aliased, parameters, "Procedure privileges");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy