Table

Models a database table or view.

Namespace:
Inetdev.Data.DatabaseSchema
Type:
Class
Public:
Yes
Protected:
No
Sealed:
No
Abstract:
No
Inherits from:
System.Object

Constructors

Table

Default constructor

Signature:
public Void Table()

Properties

Caption

Caption.

Signature:
public String Caption { get; set; }

Columns

A collection of TableColumns.

Signature:
public TableColumnCollection Columns { get; set; }

ConnectionName

Name of the connection where this table must be created.

Signature:
public String ConnectionName { get; set; }

FileGroup

The file group or table space where the tabla is stored.

Signature:
public String FileGroup { get; set; }

ForeignKeys

A collection of ForeignKeys.

Signature:
public ForeignKeyCollection ForeignKeys { get; set; }

Grant

Grant to be applied upon table or view creation.

Signature:
public Grant Grant { get; set; }

Indexes

A collection of Indexes.

Signature:
public IndexCollection Indexes { get; set; }

IsView

Whether the information modeled is a View instead of a Table.

Signature:
public Boolean IsView { get; set; }

Kindom

Kindom to which the table belongs to.

Signature:
public DatabaseObjectKindom Kindom { get; set; }

Name

The name of the object.

Signature:
public String Name { get; set; }

PrimaryKey

Table's primary key information.

Signature:
public Index PrimaryKey { get; set; }

ResourceTypeName

Type name of the resource used for localization.

Signature:
public String ResourceTypeName { get; set; }
Example
Inetdev.I18n.DataLables, Inetdev.I18n [, Version=1.0.0.0] [, Culture=neutral] [, PublicKeyToken=none]

Schema

Schema to which the table blongs to.

Signature:
public String Schema { get; set; }

SequenceName

Name of a sequence (optional).

Signature:
public String SequenceName { get; set; }
Remarks

This property is not captured by any schema discoverer.

The main purpose is to store the name of a sequence that needs to be created in Oracle databases.

Methods

ToString

Returns a textual representation of this table.

Signature:
public String ToString()