This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.

Syntax

C# Copy imageCopy Code
                                  public class DatabaseColumn
Visual Basic (Declaration) Copy imageCopy Code
                                  Public Class DatabaseColumn

The type exposes the following members.

Public Methods

  Name Description
Public method CreateDataColumn
Creates a MetaDataColumn instance based on this DatabaseColumn.
Public method Equals (Inherited from Object.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Public method ToString
Returns a string describing this DatabaseColumn
(Overrides Object..::ToString()()()().)

Protected Methods

  Name Description
Protected method Finalize (Inherited from Object.)
Protected method MemberwiseClone (Inherited from Object.)

Public Properties

  Name Description
Public property DataType
Returns the native .Net type of this database column.
Public property IsIdentity
Returns true if the column is an identity column (Auto-Increment).
Public property IsNullable
Returns true if the column is nullable.
Public property IsPrimaryKey
Returns true if the column is a primary key of the table.
Public property IsSmartNumbering
Returns true if the column is a smartnumbering column (Primary key is set by a trigger).
Public property MaxLength
Returns the maximum length of column.
Public property Name
Returns the name of the column.
Public property Ordinal
Returns the position the column in the table.
Public property Table
Returns the DatabaseTable to which this column belongs.

See Also

Advanced