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.6.0"},
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings("all")
public class Sysprocedure extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = 1294771347;
/**
* 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
*/
@Override
public java.lang.Class getRecordType() {
return org.jooq.Record.class;
}
/**
* The table column SYS.SYSPROCEDURE.proc_id
*/
public final org.jooq.TableField PROC_ID = createField("proc_id", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* The table column SYS.SYSPROCEDURE.creator
*/
public final org.jooq.TableField CREATOR = createField("creator", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* The table column SYS.SYSPROCEDURE.object_id
*/
public final org.jooq.TableField OBJECT_ID = createField("object_id", org.jooq.impl.SQLDataType.BIGINT, this);
/**
* The table column SYS.SYSPROCEDURE.proc_name
*/
public final org.jooq.TableField PROC_NAME = createField("proc_name", org.jooq.impl.SQLDataType.CHAR, this);
/**
* The table column SYS.SYSPROCEDURE.proc_defn
*/
public final org.jooq.TableField PROC_DEFN = createField("proc_defn", org.jooq.impl.SQLDataType.LONGVARCHAR, this);
/**
* The table column SYS.SYSPROCEDURE.remarks
*/
public final org.jooq.TableField REMARKS = createField("remarks", org.jooq.impl.SQLDataType.LONGVARCHAR, this);
/**
* The table column SYS.SYSPROCEDURE.replicate
*/
public final org.jooq.TableField REPLICATE = createField("replicate", org.jooq.impl.SQLDataType.CHAR, this);
/**
* The table column SYS.SYSPROCEDURE.srvid
*/
public final org.jooq.TableField SRVID = createField("srvid", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* The table column SYS.SYSPROCEDURE.source
*/
public final org.jooq.TableField SOURCE = createField("source", org.jooq.impl.SQLDataType.LONGVARCHAR, this);
/**
* The table column SYS.SYSPROCEDURE.avg_num_rows
*/
public final org.jooq.TableField AVG_NUM_ROWS = createField("avg_num_rows", org.jooq.impl.SQLDataType.FLOAT, this);
/**
* The table column SYS.SYSPROCEDURE.avg_cost
*/
public final org.jooq.TableField AVG_COST = createField("avg_cost", org.jooq.impl.SQLDataType.FLOAT, this);
/**
* The table column SYS.SYSPROCEDURE.stats
*/
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