All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jooq.util.sybase.sys.tables.Sysprocedure Maven / Gradle / Ivy

There is a newer version: 3.19.16
Show newest version
/**
 * 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", "3.0.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 = -1494553146;

	/**
	 * 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 column SYS.SYSPROCEDURE.proc_id. 
	 */
	public final org.jooq.TableField PROC_ID = createField("proc_id", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * The column SYS.SYSPROCEDURE.creator. 
	 */
	public final org.jooq.TableField CREATOR = createField("creator", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * The column SYS.SYSPROCEDURE.object_id. 
	 */
	public final org.jooq.TableField OBJECT_ID = createField("object_id", org.jooq.impl.SQLDataType.BIGINT, this);

	/**
	 * The column SYS.SYSPROCEDURE.proc_name. 
	 */
	public final org.jooq.TableField PROC_NAME = createField("proc_name", org.jooq.impl.SQLDataType.CHAR, this);

	/**
	 * The column SYS.SYSPROCEDURE.proc_defn. 
	 */
	public final org.jooq.TableField PROC_DEFN = createField("proc_defn", org.jooq.impl.SQLDataType.LONGVARCHAR, this);

	/**
	 * The column SYS.SYSPROCEDURE.remarks. 
	 */
	public final org.jooq.TableField REMARKS = createField("remarks", org.jooq.impl.SQLDataType.LONGVARCHAR, this);

	/**
	 * The column SYS.SYSPROCEDURE.replicate. 
	 */
	public final org.jooq.TableField REPLICATE = createField("replicate", org.jooq.impl.SQLDataType.CHAR, this);

	/**
	 * The column SYS.SYSPROCEDURE.srvid. 
	 */
	public final org.jooq.TableField SRVID = createField("srvid", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * The column SYS.SYSPROCEDURE.source. 
	 */
	public final org.jooq.TableField SOURCE = createField("source", org.jooq.impl.SQLDataType.LONGVARCHAR, this);

	/**
	 * The 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 column SYS.SYSPROCEDURE.avg_cost. 
	 */
	public final org.jooq.TableField AVG_COST = createField("avg_cost", org.jooq.impl.SQLDataType.FLOAT, this);

	/**
	 * The column SYS.SYSPROCEDURE.stats. 
	 */
	public final org.jooq.TableField STATS = createField("stats", org.jooq.impl.SQLDataType.LONGVARBINARY, this);

	/**
	 * Create a SYS.SYSPROCEDURE table reference
	 */
	public Sysprocedure() {
		super("SYSPROCEDURE", org.jooq.util.sybase.sys.Sys.SYS);
	}

	/**
	 * Create an aliased SYS.SYSPROCEDURE table reference
	 */
	public Sysprocedure(java.lang.String alias) {
		super(alias, org.jooq.util.sybase.sys.Sys.SYS, org.jooq.util.sybase.sys.tables.Sysprocedure.SYSPROCEDURE);
	}

	/**
	 * {@inheritDoc}
	 */
	@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