C# 클래스 DotNetWorkQueue.Transport.PostgreSQL.Schema.Column

Represents a column
파일 보기 프로젝트 열기: blehnen/DotNetWorkQueue 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
Clone ( ) : Column

Clones this instance.

Column ( ) : System

Initializes a new instance of the Column class.

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

Initializes a new instance of the Column class.

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

Initializes a new instance of the Column class.

Column ( string name, ColumnTypes type, int length, bool @null ) : 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 ) : System
name string The name.
type ColumnTypes The type.
@null bool
리턴 System

Column() 공개 메소드

Initializes a new instance of the Column class.
public Column ( string name, ColumnTypes type, byte precision, int scale, bool @null ) : System
name string The name.
type ColumnTypes The type.
precision byte The precision.
scale int The scale.
@null bool
리턴 System

Column() 공개 메소드

Initializes a new instance of the Column class.
public Column ( string name, ColumnTypes type, int length, bool @null ) : System
name string The name.
type ColumnTypes The type.
length int The length.
@null bool
리턴 System

Script() 공개 메소드

Translates this column into SQL script.
SQL data type is not supported.
public Script ( ) : string
리턴 string