Table of Contents

Class SqlColumn

Namespace
Dynamicweb.DataIntegration.ProviderHelpers
Assembly
Dynamicweb.DataIntegration.dll
public class SqlColumn : Column
Inheritance
SqlColumn
Inherited Members
Extension Methods

Constructors

SqlColumn()

protected SqlColumn()

SqlColumn(string, string, Table, int, bool, bool)

public SqlColumn(string name, string columnType, Table table, int limit, bool isIdentity, bool isPrimaryKey)

Parameters

name string
columnType string
table Table
limit int
isIdentity bool
isPrimaryKey bool

SqlColumn(string, Type, SqlDbType, Table, int, bool, bool, bool)

public SqlColumn(string name, Type columnType, SqlDbType sqlDbType, Table table, int limit, bool isIdentity, bool isPrimaryKey, bool isNew)

Parameters

name string
columnType Type
sqlDbType SqlDbType
table Table
limit int
isIdentity bool
isPrimaryKey bool
isNew bool

SqlColumn(XmlNode, Table)

public SqlColumn(XmlNode node, Table table)

Parameters

node XmlNode
table Table

Fields

Limit

public int Limit

Field Value

int

Properties

IsIdentity

public bool IsIdentity { get; protected set; }

Property Value

bool

SqlDbType

public SqlDbType SqlDbType { get; }

Property Value

SqlDbType

Methods

SaveAsXml(XmlTextWriter)

Saves as XML. Used when saving the schema to XML file. Must match the constructor that take an XmlNode as an argument.

public override void SaveAsXml(XmlTextWriter xmlTextWriter)

Parameters

xmlTextWriter XmlTextWriter

The XML text writer.

To top