C# 클래스 Azavea.Open.DAO.SQLServer.SQLServerDaLayer

Implements a FastDao layer customized for PostGreSQL (optionally with PostGIS installed).
상속: Azavea.Open.DAO.SQL.SqlDaDdlLayer
파일 보기 프로젝트 열기: azavea/net-dao-sqlserver

공개 메소드들

메소드 설명
SQLServerDaLayer ( SQLServerDescriptor connDesc ) : System

Construct the layer. Should typically be called only by the appropriate ConnectionDescriptor.

보호된 메소드들

메소드 설명
GetAutoType ( Type baseType ) : string

Returns the DDL for the type of an automatically incrementing column. Some databases only store autonums in one col type so baseType may be ignored.

GetByteArrayType ( ) : string

Returns the SQL type used to store a byte array in the DB.

GetDateTimeType ( ) : string
GetLongType ( ) : string

Returns the SQL type used to store a long in the DB.

메소드 상세

GetAutoType() 보호된 메소드

Returns the DDL for the type of an automatically incrementing column. Some databases only store autonums in one col type so baseType may be ignored.
protected GetAutoType ( Type baseType ) : string
baseType System.Type The data type of the column (nominally).
리턴 string

GetByteArrayType() 보호된 메소드

Returns the SQL type used to store a byte array in the DB.
protected GetByteArrayType ( ) : string
리턴 string

GetDateTimeType() 보호된 메소드

protected GetDateTimeType ( ) : string
리턴 string

GetLongType() 보호된 메소드

Returns the SQL type used to store a long in the DB.
protected GetLongType ( ) : string
리턴 string

SQLServerDaLayer() 공개 메소드

Construct the layer. Should typically be called only by the appropriate ConnectionDescriptor.
public SQLServerDaLayer ( SQLServerDescriptor connDesc ) : System
connDesc SQLServerDescriptor Connection to the Firebird DB we'll be using.
리턴 System