org.jooq.util.sybase.sys.tables.Sysprocedure Maven / Gradle / Ivy
/**
* This class is generated by jOOQ
*/
package org.jooq.util.sybase.sys.tables;
/**
* This class is generated by jOOQ.
*/
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.3.0"},
comments = "This class is generated by jOOQ")
public class Sysprocedure extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = 909855468;
/**
* The singleton instance of SYS.SYSPROCEDURE
*/
public static final org.jooq.util.sybase.sys.tables.Sysprocedure SYSPROCEDURE = new org.jooq.util.sybase.sys.tables.Sysprocedure();
/**
* The class holding records for this type
*/
private static final java.lang.Class __RECORD_TYPE = org.jooq.Record.class;
/**
* The class holding records for this type
*/
@Override
public java.lang.Class getRecordType() {
return __RECORD_TYPE;
}
/**
* An uncommented item
*/
public final org.jooq.TableField PROC_ID = createField("proc_id", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField CREATOR = createField("creator", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField OBJECT_ID = createField("object_id", org.jooq.impl.SQLDataType.BIGINT, this);
/**
* An uncommented item
*/
public final org.jooq.TableField PROC_NAME = createField("proc_name", org.jooq.impl.SQLDataType.CHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField PROC_DEFN = createField("proc_defn", org.jooq.impl.SQLDataType.LONGVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField REMARKS = createField("remarks", org.jooq.impl.SQLDataType.LONGVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField REPLICATE = createField("replicate", org.jooq.impl.SQLDataType.CHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField SRVID = createField("srvid", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField SOURCE = createField("source", org.jooq.impl.SQLDataType.LONGVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField AVG_NUM_ROWS = createField("avg_num_rows", org.jooq.impl.SQLDataType.FLOAT, this);
/**
* An uncommented item
*/
public final org.jooq.TableField AVG_COST = createField("avg_cost", org.jooq.impl.SQLDataType.FLOAT, this);
/**
* An uncommented item
*/
public final org.jooq.TableField STATS = createField("stats", org.jooq.impl.SQLDataType.LONGVARBINARY, this);
public Sysprocedure() {
super("SYSPROCEDURE", org.jooq.util.sybase.sys.Sys.SYS);
}
public Sysprocedure(java.lang.String alias) {
super(alias, org.jooq.util.sybase.sys.Sys.SYS, org.jooq.util.sybase.sys.tables.Sysprocedure.SYSPROCEDURE);
}
@Override
public org.jooq.util.sybase.sys.tables.Sysprocedure as(java.lang.String alias) {
return new org.jooq.util.sybase.sys.tables.Sysprocedure(alias);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy