C# Класс DotNetWorkQueue.Transport.SQLite.Schema.Column

Represents a column in SQLite
Показать файл Открыть проект Примеры использования класса

Private Properties

Свойство Тип Описание

Открытые методы

Метод Описание
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.

Описание методов

Clone() публичный Метод

Clones this instance.
public Clone ( ) : Column
Результат Column

Column() публичный Метод

Initializes a new instance of the Column class.
public Column ( ) : System
Результат System

Column() публичный Метод

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
Результат System

Column() публичный Метод

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
Результат System

Column() публичный Метод

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
Результат System

Script() публичный Метод

Translates this column into SQL script.
SQL data type is not supported.
public Script ( ) : string
Результат string