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://jooq.sourceforge.net",
comments = "This class is generated by jOOQ")
public class ProcsPriv extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = 1687843386;
/**
* The singleton instance of 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
*/
private static final java.lang.Class __RECORD_TYPE = org.jooq.util.mysql.mysql.tables.records.ProcsPrivRecord.class;
/**
* The class holding records for this type
*/
@Override
public java.lang.Class getRecordType() {
return __RECORD_TYPE;
}
/**
* An uncommented item
*
* PRIMARY KEY
*/
public static final org.jooq.TableField HOST = new org.jooq.impl.TableFieldImpl("Host", org.jooq.impl.SQLDataType.CHAR, PROCS_PRIV);
/**
* An uncommented item
*
* PRIMARY KEY
*/
public static final org.jooq.TableField DB = new org.jooq.impl.TableFieldImpl("Db", org.jooq.impl.SQLDataType.CHAR, PROCS_PRIV);
/**
* An uncommented item
*
* PRIMARY KEY
*/
public static final org.jooq.TableField USER = new org.jooq.impl.TableFieldImpl("User", org.jooq.impl.SQLDataType.CHAR, PROCS_PRIV);
/**
* An uncommented item
*
* PRIMARY KEY
*/
public static final org.jooq.TableField ROUTINE_NAME = new org.jooq.impl.TableFieldImpl("Routine_name", org.jooq.impl.SQLDataType.CHAR, PROCS_PRIV);
/**
* An uncommented item
*
* PRIMARY KEY
*/
public static final org.jooq.TableField ROUTINE_TYPE = new org.jooq.impl.TableFieldImpl("Routine_type", org.jooq.util.mysql.MySQLDataType.VARCHAR.asEnumDataType(org.jooq.util.mysql.mysql.enums.ProcsPrivRoutineType.class), PROCS_PRIV);
/**
* An uncommented item
*/
public static final org.jooq.TableField GRANTOR = new org.jooq.impl.TableFieldImpl("Grantor", org.jooq.impl.SQLDataType.CHAR, PROCS_PRIV);
/**
* An uncommented item
*/
public static final org.jooq.TableField PROC_PRIV = new org.jooq.impl.TableFieldImpl("Proc_priv", org.jooq.impl.SQLDataType.VARCHAR, PROCS_PRIV);
/**
* An uncommented item
*/
public static final org.jooq.TableField TIMESTAMP = new org.jooq.impl.TableFieldImpl("Timestamp", org.jooq.impl.SQLDataType.TIMESTAMP, PROCS_PRIV);
/**
* No further instances allowed
*/
private ProcsPriv() {
super("procs_priv", org.jooq.util.mysql.mysql.Mysql.MYSQL);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy