C# 클래스 Tiraggo.Interfaces.tgParameter

파일 보기 프로젝트 열기: BrewDawg/Tiraggo 1 사용 예제들

공개 메소드들

메소드 설명
tgParameter ( ) : System
tgParameter ( string name, object value ) : System

This is the provider independent way to use parameters, you can do so with the other methods as well but this is the preferred constructor for all input parameters.

tgParameter ( string name, object value, tgParameterDirection direction ) : System

Use this constructor for non-input parameters only.

tgParameter ( string name, object value, tgParameterDirection direction, DbType type, int size ) : System

Use this constructor for non-input parameters only.

tgParameter ( string name, tgParameterDirection direction, DbType type, int size ) : System

Use this constructor for non-input parameters only.

메소드 상세

tgParameter() 공개 메소드

public tgParameter ( ) : System
리턴 System

tgParameter() 공개 메소드

This is the provider independent way to use parameters, you can do so with the other methods as well but this is the preferred constructor for all input parameters.
public tgParameter ( string name, object value ) : System
name string The name of the parameter without a prefix, for example, "EmployeeID" not "@EmployeeID".
value object The value of the parameter
리턴 System

tgParameter() 공개 메소드

Use this constructor for non-input parameters only.
public tgParameter ( string name, object value, tgParameterDirection direction ) : System
name string The name of the parameter without a prefix, for example, "EmployeeID" not "@EmployeeID".
value object The value of the parameter
direction tgParameterDirection The direction of the parameter
리턴 System

tgParameter() 공개 메소드

Use this constructor for non-input parameters only.
public tgParameter ( string name, object value, tgParameterDirection direction, DbType type, int size ) : System
name string The name of the parameter without a prefix, for example, "EmployeeID" not "@EmployeeID".
value object The value of the parameter
direction tgParameterDirection The parameter direction
type DbType The System.Data.DbType of the parameter
size int The size. For strings the length, for most others 0 can be passed in
리턴 System

tgParameter() 공개 메소드

Use this constructor for non-input parameters only.
public tgParameter ( string name, tgParameterDirection direction, DbType type, int size ) : System
name string The name of the parameter without a prefix, for example, "EmployeeID" not "@EmployeeID".
direction tgParameterDirection The parameter direction
type DbType The System.Data.DbType of the parameter
size int The size. For strings the length, for most others 0 can be passed in
리턴 System