C# Class NSoft.NFramework.Data.DevartOracle.EnterpriseLibrary.OracleDatabase

Inheritance: Microsoft.Practices.EnterpriseLibrary.Data.Database
显示文件 Open project: debop/NFramework Class Usage Examples

Public Methods

Method Description
AddParameter ( DbCommand command, string name, DbType dbType, int size, ParameterDirection direction, bool nullable, byte precision, byte scale, string sourceColumn, DataRowVersion sourceVersion, object value ) : void
CreateConnection ( ) : DbConnection

새로운 Oracle Connection 인스턴스를 생성합니다.

GetStoredProcCommand ( string storedProcedureName ) : DbCommand
OracleDatabase ( string connectionString ) : System

생성자

Protected Methods

Method Description
ConfigureParameter ( DbParameter param, string name, DbType dbType, int size, ParameterDirection direction, bool nullable, byte precision, byte scale, string sourceColumn, DataRowVersion sourceVersion, object value ) : void
DeriveParameters ( DbCommand discoveryCommand ) : void

Procedure의 Parameter 정보를 로드합니다.

SetUpRowUpdatedEvent ( DbDataAdapter adapter ) : void

Private Methods

Method Description
OnOracleRowUpdated ( object sender, Devart e ) : void

Method Details

AddParameter() public method

public AddParameter ( DbCommand command, string name, DbType dbType, int size, ParameterDirection direction, bool nullable, byte precision, byte scale, string sourceColumn, DataRowVersion sourceVersion, object value ) : void
command System.Data.Common.DbCommand
name string
dbType DbType
size int
direction ParameterDirection
nullable bool
precision byte
scale byte
sourceColumn string
sourceVersion DataRowVersion
value object
return void

ConfigureParameter() protected method

protected ConfigureParameter ( DbParameter param, string name, DbType dbType, int size, ParameterDirection direction, bool nullable, byte precision, byte scale, string sourceColumn, DataRowVersion sourceVersion, object value ) : void
param System.Data.Common.DbParameter
name string
dbType DbType
size int
direction ParameterDirection
nullable bool
precision byte
scale byte
sourceColumn string
sourceVersion DataRowVersion
value object
return void

CreateConnection() public method

새로운 Oracle Connection 인스턴스를 생성합니다.
public CreateConnection ( ) : DbConnection
return System.Data.Common.DbConnection

DeriveParameters() protected method

Procedure의 Parameter 정보를 로드합니다.
protected DeriveParameters ( DbCommand discoveryCommand ) : void
discoveryCommand System.Data.Common.DbCommand
return void

GetStoredProcCommand() public method

public GetStoredProcCommand ( string storedProcedureName ) : DbCommand
storedProcedureName string
return System.Data.Common.DbCommand

OracleDatabase() public method

생성자
public OracleDatabase ( string connectionString ) : System
connectionString string DB 연결 문자열
return System

SetUpRowUpdatedEvent() protected method

protected SetUpRowUpdatedEvent ( DbDataAdapter adapter ) : void
adapter System.Data.Common.DbDataAdapter
return void