C# 클래스 CqlSharp.CqlParameter

Represents a single parameter for use with CqlCommands
상속: System.Data.Common.DbParameter
파일 보기 프로젝트 열기: reuzel/CqlSharp

Private Properties

프로퍼티 타입 설명
CheckFixed void
CqlParameter System
Serialize byte[]
SetParameterName void

공개 메소드들

메소드 설명
Clone ( ) : CqlParameter

Clones this instance.

CqlParameter ( ) : System

Initializes a new instance of the CqlParameter class.

CqlParameter ( string name ) : System

Initializes a new instance of the CqlParameter class.

CqlParameter ( string name, CqlType type ) : System

Initializes a new instance of the CqlParameter class.

CqlParameter ( string name, object value ) : System

Initializes a new instance of the CqlParameter class. The typeCode of the parameter will be guessed from the value.

CqlParameter ( string table, string name, CqlType type ) : System

Initializes a new instance of the CqlParameter class.

CqlParameter ( string keyspace, string table, string name, CqlType type ) : System

Initializes a new instance of the CqlParameter class.

ResetDbType ( ) : void

Resets the DbType property to its original settings.

비공개 메소드들

메소드 설명
CheckFixed ( ) : void

Checks if the typeCode or name of the parameter may be changed

CqlParameter ( Column column ) : System
Serialize ( byte protocolVersion ) : byte[]

Serializes this parameter.

SetParameterName ( string value ) : void

Sets the name of the parameter.

메소드 상세

Clone() 공개 메소드

Clones this instance.
public Clone ( ) : CqlParameter
리턴 CqlParameter

CqlParameter() 공개 메소드

Initializes a new instance of the CqlParameter class.
public CqlParameter ( ) : System
리턴 System

CqlParameter() 공개 메소드

Initializes a new instance of the CqlParameter class.
public CqlParameter ( string name ) : System
name string The name.
리턴 System

CqlParameter() 공개 메소드

Initializes a new instance of the CqlParameter class.
public CqlParameter ( string name, CqlType type ) : System
name string The name.
type CqlType The typeCode.
리턴 System

CqlParameter() 공개 메소드

Initializes a new instance of the CqlParameter class. The typeCode of the parameter will be guessed from the value.
public CqlParameter ( string name, object value ) : System
name string The name.
value object The value.
리턴 System

CqlParameter() 공개 메소드

Initializes a new instance of the CqlParameter class.
public CqlParameter ( string table, string name, CqlType type ) : System
table string The table.
name string The name.
type CqlType The typeCode.
리턴 System

CqlParameter() 공개 메소드

Initializes a new instance of the CqlParameter class.
public CqlParameter ( string keyspace, string table, string name, CqlType type ) : System
keyspace string The keyspace.
table string The table.
name string The name.
type CqlType The typeCode.
리턴 System

ResetDbType() 공개 메소드

Resets the DbType property to its original settings.
public ResetDbType ( ) : void
리턴 void