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", "2.6.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 = -593830730;
/**
* 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 table column dbo.sysobjects.name
*/
public static final org.jooq.TableField NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR, SYSOBJECTS);
/**
* The table column dbo.sysobjects.id
*/
public static final org.jooq.TableField ID = createField("id", org.jooq.impl.SQLDataType.INTEGER, SYSOBJECTS);
/**
* The table column dbo.sysobjects.uid
*/
public static final org.jooq.TableField UID = createField("uid", org.jooq.impl.SQLDataType.INTEGER, SYSOBJECTS);
/**
* The table column dbo.sysobjects.type
*/
public static final org.jooq.TableField TYPE = createField("type", org.jooq.impl.SQLDataType.CHAR, SYSOBJECTS);
/**
* The table column dbo.sysobjects.userstat
*/
public static final org.jooq.TableField USERSTAT = createField("userstat", org.jooq.impl.SQLDataType.SMALLINT, SYSOBJECTS);
/**
* The table column dbo.sysobjects.sysstat
*/
public static final org.jooq.TableField SYSSTAT = createField("sysstat", org.jooq.impl.SQLDataType.SMALLINT, SYSOBJECTS);
/**
* The table column dbo.sysobjects.indexdel
*/
public static final org.jooq.TableField INDEXDEL = createField("indexdel", org.jooq.impl.SQLDataType.SMALLINT, SYSOBJECTS);
/**
* The table column dbo.sysobjects.schemacnt
*/
public static final org.jooq.TableField SCHEMACNT = createField("schemacnt", org.jooq.impl.SQLDataType.SMALLINT, SYSOBJECTS);
/**
* The table column dbo.sysobjects.sysstat2
*/
public static final org.jooq.TableField SYSSTAT2 = createField("sysstat2", org.jooq.impl.SQLDataType.INTEGER, SYSOBJECTS);
/**
* The table column dbo.sysobjects.crdate
*/
public static final org.jooq.TableField CRDATE = createField("crdate", org.jooq.impl.SQLDataType.TIMESTAMP, SYSOBJECTS);
/**
* The table column dbo.sysobjects.expdate
*/
public static final org.jooq.TableField EXPDATE = createField("expdate", org.jooq.impl.SQLDataType.TIMESTAMP, SYSOBJECTS);
/**
* The table column dbo.sysobjects.deltrig
*/
public static final org.jooq.TableField DELTRIG = createField("deltrig", org.jooq.impl.SQLDataType.INTEGER, SYSOBJECTS);
/**
* The table column dbo.sysobjects.instrig
*/
public static final org.jooq.TableField INSTRIG = createField("instrig", org.jooq.impl.SQLDataType.INTEGER, SYSOBJECTS);
/**
* The table column dbo.sysobjects.updtrig
*/
public static final org.jooq.TableField UPDTRIG = createField("updtrig", org.jooq.impl.SQLDataType.INTEGER, SYSOBJECTS);
/**
* The table column dbo.sysobjects.seltrig
*/
public static final org.jooq.TableField SELTRIG = createField("seltrig", org.jooq.impl.SQLDataType.INTEGER, SYSOBJECTS);
/**
* The table column dbo.sysobjects.ckfirst
*/
public static final org.jooq.TableField CKFIRST = createField("ckfirst", org.jooq.impl.SQLDataType.INTEGER, SYSOBJECTS);
/**
* The table column dbo.sysobjects.cache
*/
public static final org.jooq.TableField CACHE = createField("cache", org.jooq.impl.SQLDataType.SMALLINT, SYSOBJECTS);
/**
* The table column dbo.sysobjects.audflags
*/
public static final org.jooq.TableField AUDFLAGS = createField("audflags", org.jooq.impl.SQLDataType.INTEGER, SYSOBJECTS);
/**
* The table column dbo.sysobjects.objspare
*/
public static final org.jooq.TableField OBJSPARE = createField("objspare", org.jooq.impl.SQLDataType.SMALLINT, SYSOBJECTS);
/**
* The table column dbo.sysobjects.versionts
*/
public static final org.jooq.TableField VERSIONTS = createField("versionts", org.jooq.impl.SQLDataType.BINARY, SYSOBJECTS);
/**
* The table column dbo.sysobjects.loginame
*/
public static final org.jooq.TableField LOGINAME = createField("loginame", org.jooq.impl.SQLDataType.VARCHAR, SYSOBJECTS);
/**
* The table column dbo.sysobjects.identburnmax
*/
public static final org.jooq.TableField IDENTBURNMAX = createField("identburnmax", org.jooq.impl.SQLDataType.DECIMAL_INTEGER, SYSOBJECTS);
/**
* The table column dbo.sysobjects.spacestate
*/
public static final org.jooq.TableField SPACESTATE = createField("spacestate", org.jooq.impl.SQLDataType.SMALLINT, SYSOBJECTS);
/**
* The table column dbo.sysobjects.erlchgts
*/
public static final org.jooq.TableField ERLCHGTS = createField("erlchgts", org.jooq.impl.SQLDataType.BINARY, SYSOBJECTS);
/**
* The table 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