apache > db
Apache DB Project
 
Font size:      

SYSCOLUMNS

SYSCOLUMNS

Describes the columns within all tables in the current database:

Column NameTypeLengthNullableContents
REFERENCEIDCHAR36falseIdentifier for table or publication (join with SYSTABLES.TABLEID or SYSPUBS. PUBLICATIONID)
COLUMN-NAMECHAR128falsecolumn or parameter name
COLUMNNUMBERINT4falsethe position of the column within the table or the position of the parameter within the publication
COLUMNDATATYPEorg.apache.derby.catalog. TypeDescriptor

This class is not part of the public API.


falsesystem type that describes precision, length, scale, nullability, type name, and storage type of data
COLUMNDEFAULTjava.io.Serializable
truefor tables, describes default value of the column. The toString() method on the object stored in the table returns the text of the default value as specified in the CREATE TABLE or ALTER TABLE statement.

for publication parameters, defines the default value of the parameter at the source, and the actual value of the parameter at the target

COLUMNDEFAULTIDCHAR36falseunique identifier for the default value
IDENTITYCOLUMNVALUEBIGINT
truewhat the next value for column will be, if the column is an identity column
IDENTITYCOLUMNSTARTBIGINT
trueinitial value of column (if specified), if it is an identity column
IDENTITYCOLUMNINCBIGINT
trueamount column value is automatically incremented (if specified), if the column is an identity column

Previous Page
Next Page
Table of Contents
Index