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 DatabaseTable
Visual Basic (Declaration) Copy imageCopy Code
                                  Public Class DatabaseTable

The type exposes the following properties.

Public Properties

  Name Description
Public property Columns
List of columns of this database table.
Public property Db
Returns the Database to which this DatabaseTable belongs.
Public property DependingViews
Returns a list of DatabaseTable object of views which depend on this database table.
Public property DependsOn
Returns a list of DatabaseTable objects on which this view depends.
Public property HasIdentityColumn
Returns true if the table has an identity column.
Public property IsView
Returns true if this is a database view.
Public property Item Overloaded.
Public property MetaType
Returns a MetaType describing this database table.
Public property Name
Returns the name of the table.
Public property PrimaryKeyColumns
List of primary key columns of this database table.

See Also

Advanced