C# Class DotNetWorkQueue.Transport.SqlServer.Schema.Column

Represents a column in SQL server
Afficher le fichier Open project: blehnen/DotNetWorkQueue Class Usage Examples

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
Clone ( ) : Column

Clones this instance.

Column ( ) : System

Initializes a new instance of the Column class.

Column ( string name, ColumnTypes type, bool @null, Default @default ) : System

Initializes a new instance of the Column class.

Column ( string name, ColumnTypes type, byte precision, int scale, bool @null, Default @default ) : System

Initializes a new instance of the Column class.

Column ( string name, ColumnTypes type, int length, bool @null, Default @default ) : System

Initializes a new instance of the Column class.

Script ( ) : string

Translates this column into SQL script.

Method Details

Clone() public méthode

Clones this instance.
public Clone ( ) : Column
Résultat Column

Column() public méthode

Initializes a new instance of the Column class.
public Column ( ) : System
Résultat System

Column() public méthode

Initializes a new instance of the Column class.
public Column ( string name, ColumnTypes type, bool @null, Default @default ) : System
name string The name.
type ColumnTypes The type.
@null bool
@default Default
Résultat System

Column() public méthode

Initializes a new instance of the Column class.
public Column ( string name, ColumnTypes type, byte precision, int scale, bool @null, Default @default ) : System
name string The name.
type ColumnTypes The type.
precision byte The precision.
scale int The scale.
@null bool
@default Default
Résultat System

Column() public méthode

Initializes a new instance of the Column class.
public Column ( string name, ColumnTypes type, int length, bool @null, Default @default ) : System
name string The name.
type ColumnTypes The type.
length int The length.
@null bool
@default Default
Résultat System

Script() public méthode

Translates this column into SQL script.
SQL data type is not supported.
public Script ( ) : string
Résultat string