org.jooq.util.ase.sys.tables.Sysobjects Maven / Gradle / Ivy
/**
* This class is generated by jOOQ
*/
package org.jooq.util.ase.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 Sysobjects extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = 1599664646;
/**
* The singleton instance of dbo.sysobjects
*/
public static final org.jooq.util.ase.sys.tables.Sysobjects SYSOBJECTS = new org.jooq.util.ase.sys.tables.Sysobjects();
/**
* The class holding records for this type
*/
@Override
public java.lang.Class getRecordType() {
return org.jooq.Record.class;
}
/**
* The column dbo.sysobjects.name
.
*/
public static final org.jooq.TableField NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR, SYSOBJECTS);
/**
* The column dbo.sysobjects.id
.
*/
public static final org.jooq.TableField ID = createField("id", org.jooq.impl.SQLDataType.INTEGER, SYSOBJECTS);
/**
* The column dbo.sysobjects.uid
.
*/
public static final org.jooq.TableField UID = createField("uid", org.jooq.impl.SQLDataType.INTEGER, SYSOBJECTS);
/**
* The column dbo.sysobjects.type
.
*/
public static final org.jooq.TableField TYPE = createField("type", org.jooq.impl.SQLDataType.CHAR, SYSOBJECTS);
/**
* The column dbo.sysobjects.userstat
.
*/
public static final org.jooq.TableField USERSTAT = createField("userstat", org.jooq.impl.SQLDataType.SMALLINT, SYSOBJECTS);
/**
* The column dbo.sysobjects.sysstat
.
*/
public static final org.jooq.TableField SYSSTAT = createField("sysstat", org.jooq.impl.SQLDataType.SMALLINT, SYSOBJECTS);
/**
* The column dbo.sysobjects.indexdel
.
*/
public static final org.jooq.TableField INDEXDEL = createField("indexdel", org.jooq.impl.SQLDataType.SMALLINT, SYSOBJECTS);
/**
* The column dbo.sysobjects.schemacnt
.
*/
public static final org.jooq.TableField SCHEMACNT = createField("schemacnt", org.jooq.impl.SQLDataType.SMALLINT, SYSOBJECTS);
/**
* The column dbo.sysobjects.sysstat2
.
*/
public static final org.jooq.TableField SYSSTAT2 = createField("sysstat2", org.jooq.impl.SQLDataType.INTEGER, SYSOBJECTS);
/**
* The column dbo.sysobjects.crdate
.
*/
public static final org.jooq.TableField CRDATE = createField("crdate", org.jooq.impl.SQLDataType.TIMESTAMP, SYSOBJECTS);
/**
* The column dbo.sysobjects.expdate
.
*/
public static final org.jooq.TableField EXPDATE = createField("expdate", org.jooq.impl.SQLDataType.TIMESTAMP, SYSOBJECTS);
/**
* The column dbo.sysobjects.deltrig
.
*/
public static final org.jooq.TableField DELTRIG = createField("deltrig", org.jooq.impl.SQLDataType.INTEGER, SYSOBJECTS);
/**
* The column dbo.sysobjects.instrig
.
*/
public static final org.jooq.TableField INSTRIG = createField("instrig", org.jooq.impl.SQLDataType.INTEGER, SYSOBJECTS);
/**
* The column dbo.sysobjects.updtrig
.
*/
public static final org.jooq.TableField UPDTRIG = createField("updtrig", org.jooq.impl.SQLDataType.INTEGER, SYSOBJECTS);
/**
* The column dbo.sysobjects.seltrig
.
*/
public static final org.jooq.TableField SELTRIG = createField("seltrig", org.jooq.impl.SQLDataType.INTEGER, SYSOBJECTS);
/**
* The column dbo.sysobjects.ckfirst
.
*/
public static final org.jooq.TableField CKFIRST = createField("ckfirst", org.jooq.impl.SQLDataType.INTEGER, SYSOBJECTS);
/**
* The column dbo.sysobjects.cache
.
*/
public static final org.jooq.TableField CACHE = createField("cache", org.jooq.impl.SQLDataType.SMALLINT, SYSOBJECTS);
/**
* The column dbo.sysobjects.audflags
.
*/
public static final org.jooq.TableField AUDFLAGS = createField("audflags", org.jooq.impl.SQLDataType.INTEGER, SYSOBJECTS);
/**
* The column dbo.sysobjects.objspare
.
*/
public static final org.jooq.TableField OBJSPARE = createField("objspare", org.jooq.impl.SQLDataType.SMALLINT, SYSOBJECTS);
/**
* The column dbo.sysobjects.versionts
.
*/
public static final org.jooq.TableField VERSIONTS = createField("versionts", org.jooq.impl.SQLDataType.BINARY, SYSOBJECTS);
/**
* The column dbo.sysobjects.loginame
.
*/
public static final org.jooq.TableField LOGINAME = createField("loginame", org.jooq.impl.SQLDataType.VARCHAR, SYSOBJECTS);
/**
* The column dbo.sysobjects.identburnmax
.
*/
public static final org.jooq.TableField IDENTBURNMAX = createField("identburnmax", org.jooq.impl.SQLDataType.DECIMAL_INTEGER, SYSOBJECTS);
/**
* The column dbo.sysobjects.spacestate
.
*/
public static final org.jooq.TableField SPACESTATE = createField("spacestate", org.jooq.impl.SQLDataType.SMALLINT, SYSOBJECTS);
/**
* The column dbo.sysobjects.erlchgts
.
*/
public static final org.jooq.TableField ERLCHGTS = createField("erlchgts", org.jooq.impl.SQLDataType.BINARY, SYSOBJECTS);
/**
* The column dbo.sysobjects.sysstat3
.
*/
public static final org.jooq.TableField SYSSTAT3 = createField("sysstat3", org.jooq.impl.SQLDataType.SMALLINT, SYSOBJECTS);
/**
* No further instances allowed
*/
private Sysobjects() {
super("sysobjects", org.jooq.util.ase.sys.Dbo.DBO);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy