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 Code |
---|---|
public class DatabaseColumn |
Visual Basic (Declaration) | Copy Code |
---|---|
Public Class DatabaseColumn |
The type exposes the following properties.
Public Properties
Name | Description | |
---|---|---|
DataType |
Returns the native .Net type of this database column.
|
|
IsIdentity |
Returns true if the column is an identity column (Auto-Increment).
|
|
IsNullable |
Returns true if the column is nullable.
|
|
IsPrimaryKey |
Returns true if the column is a primary key of the table.
|
|
IsSmartNumbering |
Returns true if the column is a smartnumbering column (Primary key is set by a trigger).
|
|
MaxLength |
Returns the maximum length of column.
|
|
Name |
Returns the name of the column.
|
|
Ordinal |
Returns the position the column in the table.
|
|
Table |
Returns the DatabaseTable to which this column belongs.
|
See Also
Smartsite.Data Namespace