C# 클래스 PetShop.Data.SqlClient.SqlNetTiersProvider

This class is the Sql implementation of the NetTiersProvider.
상속: PetShop.Data.Bases.NetTiersProvider
파일 보기 프로젝트 열기: netTiers/netTiers

공개 메소드들

메소드 설명
CreateTransaction ( ) : TransactionManager

Creates a new TransactionManager instance from the current datasource.

ExecuteDataSet ( CommandType commandType, string commandText ) : DataSet

Executes the data set.

ExecuteDataSet ( DbCommand commandWrapper ) : DataSet

Executes the data set.

ExecuteDataSet ( TransactionManager transactionManager, CommandType commandType, string commandText ) : DataSet

Executes the data set.

ExecuteDataSet ( TransactionManager transactionManager, DbCommand commandWrapper ) : DataSet

Executes the data set.

ExecuteDataSet ( TransactionManager transactionManager, string storedProcedureName ) : DataSet

Executes the data set.

ExecuteDataSet ( string storedProcedureName ) : DataSet

Executes the data set.

ExecuteNonQuery ( CommandType commandType, string commandText ) : int

Executes the non query.

ExecuteNonQuery ( TransactionManager transactionManager, CommandType commandType, string commandText ) : int

Executes the non query.

ExecuteNonQuery ( TransactionManager transactionManager, string storedProcedureName ) : int

Executes the non query.

ExecuteNonQuery ( string storedProcedureName ) : int

Executes the non query.

ExecuteNonQuery ( DbCommand commandWrapper ) : void

Executes the non query.

ExecuteNonQuery ( TransactionManager transactionManager, DbCommand commandWrapper ) : void

Executes the non query.

ExecuteReader ( CommandType commandType, string commandText ) : IDataReader

Executes the reader.

ExecuteReader ( DbCommand commandWrapper ) : IDataReader

Executes the reader.

ExecuteReader ( TransactionManager transactionManager, CommandType commandType, string commandText ) : IDataReader

Executes the reader.

ExecuteReader ( TransactionManager transactionManager, DbCommand commandWrapper ) : IDataReader

Executes the reader.

ExecuteReader ( TransactionManager transactionManager, string storedProcedureName ) : IDataReader

Executes the reader.

ExecuteReader ( string storedProcedureName ) : IDataReader

Executes the reader.

ExecuteScalar ( CommandType commandType, string commandText ) : object

Executes the scalar.

ExecuteScalar ( DbCommand commandWrapper ) : object

Executes the scalar.

ExecuteScalar ( TransactionManager transactionManager, CommandType commandType, string commandText ) : object

Executes the scalar.

ExecuteScalar ( TransactionManager transactionManager, DbCommand commandWrapper ) : object

Executes the scalar.

ExecuteScalar ( TransactionManager transactionManager, string storedProcedureName ) : object

Executes the scalar.

ExecuteScalar ( string storedProcedureName ) : object

Executes the scalar.

Initialize ( string name, NameValueCollection config ) : void

Initializes the provider.

SqlNetTiersProvider ( ) : System

Initializes a new instance of the SqlNetTiersProvider class.

메소드 상세

CreateTransaction() 공개 메소드

Creates a new TransactionManager instance from the current datasource.
public CreateTransaction ( ) : TransactionManager
리턴 PetShop.Data.TransactionManager

ExecuteDataSet() 공개 메소드

Executes the data set.
public ExecuteDataSet ( CommandType commandType, string commandText ) : DataSet
commandType CommandType Type of the command.
commandText string The command text.
리턴 System.Data.DataSet

ExecuteDataSet() 공개 메소드

Executes the data set.
public ExecuteDataSet ( DbCommand commandWrapper ) : DataSet
commandWrapper System.Data.Common.DbCommand The command wrapper.
리턴 System.Data.DataSet

ExecuteDataSet() 공개 메소드

Executes the data set.
public ExecuteDataSet ( TransactionManager transactionManager, CommandType commandType, string commandText ) : DataSet
transactionManager PetShop.Data.TransactionManager The transaction manager.
commandType CommandType Type of the command.
commandText string The command text.
리턴 System.Data.DataSet

ExecuteDataSet() 공개 메소드

Executes the data set.
public ExecuteDataSet ( TransactionManager transactionManager, DbCommand commandWrapper ) : DataSet
transactionManager PetShop.Data.TransactionManager The transaction manager.
commandWrapper System.Data.Common.DbCommand The command wrapper.
리턴 System.Data.DataSet

ExecuteDataSet() 공개 메소드

Executes the data set.
public ExecuteDataSet ( TransactionManager transactionManager, string storedProcedureName ) : DataSet
transactionManager PetShop.Data.TransactionManager The transaction manager.
storedProcedureName string Name of the stored procedure.
리턴 System.Data.DataSet

ExecuteDataSet() 공개 메소드

Executes the data set.
public ExecuteDataSet ( string storedProcedureName ) : DataSet
storedProcedureName string Name of the stored procedure.
리턴 System.Data.DataSet

ExecuteNonQuery() 공개 메소드

Executes the non query.
public ExecuteNonQuery ( CommandType commandType, string commandText ) : int
commandType CommandType Type of the command.
commandText string The command text.
리턴 int

ExecuteNonQuery() 공개 메소드

Executes the non query.
public ExecuteNonQuery ( TransactionManager transactionManager, CommandType commandType, string commandText ) : int
transactionManager PetShop.Data.TransactionManager The transaction manager.
commandType CommandType Type of the command.
commandText string The command text.
리턴 int

ExecuteNonQuery() 공개 메소드

Executes the non query.
public ExecuteNonQuery ( TransactionManager transactionManager, string storedProcedureName ) : int
transactionManager PetShop.Data.TransactionManager The transaction manager.
storedProcedureName string Name of the stored procedure.
리턴 int

ExecuteNonQuery() 공개 메소드

Executes the non query.
public ExecuteNonQuery ( string storedProcedureName ) : int
storedProcedureName string Name of the stored procedure.
리턴 int

ExecuteNonQuery() 공개 메소드

Executes the non query.
public ExecuteNonQuery ( DbCommand commandWrapper ) : void
commandWrapper System.Data.Common.DbCommand The command wrapper.
리턴 void

ExecuteNonQuery() 공개 메소드

Executes the non query.
public ExecuteNonQuery ( TransactionManager transactionManager, DbCommand commandWrapper ) : void
transactionManager PetShop.Data.TransactionManager The transaction manager.
commandWrapper System.Data.Common.DbCommand The command wrapper.
리턴 void

ExecuteReader() 공개 메소드

Executes the reader.
public ExecuteReader ( CommandType commandType, string commandText ) : IDataReader
commandType CommandType Type of the command.
commandText string The command text.
리턴 IDataReader

ExecuteReader() 공개 메소드

Executes the reader.
public ExecuteReader ( DbCommand commandWrapper ) : IDataReader
commandWrapper System.Data.Common.DbCommand The command wrapper.
리턴 IDataReader

ExecuteReader() 공개 메소드

Executes the reader.
public ExecuteReader ( TransactionManager transactionManager, CommandType commandType, string commandText ) : IDataReader
transactionManager PetShop.Data.TransactionManager The transaction manager.
commandType CommandType Type of the command.
commandText string The command text.
리턴 IDataReader

ExecuteReader() 공개 메소드

Executes the reader.
public ExecuteReader ( TransactionManager transactionManager, DbCommand commandWrapper ) : IDataReader
transactionManager PetShop.Data.TransactionManager The transaction manager.
commandWrapper System.Data.Common.DbCommand The command wrapper.
리턴 IDataReader

ExecuteReader() 공개 메소드

Executes the reader.
public ExecuteReader ( TransactionManager transactionManager, string storedProcedureName ) : IDataReader
transactionManager PetShop.Data.TransactionManager The transaction manager.
storedProcedureName string Name of the stored procedure.
리턴 IDataReader

ExecuteReader() 공개 메소드

Executes the reader.
public ExecuteReader ( string storedProcedureName ) : IDataReader
storedProcedureName string Name of the stored procedure.
리턴 IDataReader

ExecuteScalar() 공개 메소드

Executes the scalar.
public ExecuteScalar ( CommandType commandType, string commandText ) : object
commandType CommandType Type of the command.
commandText string The command text.
리턴 object

ExecuteScalar() 공개 메소드

Executes the scalar.
public ExecuteScalar ( DbCommand commandWrapper ) : object
commandWrapper System.Data.Common.DbCommand The command wrapper.
리턴 object

ExecuteScalar() 공개 메소드

Executes the scalar.
public ExecuteScalar ( TransactionManager transactionManager, CommandType commandType, string commandText ) : object
transactionManager PetShop.Data.TransactionManager The transaction manager.
commandType CommandType Type of the command.
commandText string The command text.
리턴 object

ExecuteScalar() 공개 메소드

Executes the scalar.
public ExecuteScalar ( TransactionManager transactionManager, DbCommand commandWrapper ) : object
transactionManager PetShop.Data.TransactionManager The transaction manager.
commandWrapper System.Data.Common.DbCommand The command wrapper.
리턴 object

ExecuteScalar() 공개 메소드

Executes the scalar.
public ExecuteScalar ( TransactionManager transactionManager, string storedProcedureName ) : object
transactionManager PetShop.Data.TransactionManager The transaction manager.
storedProcedureName string Name of the stored procedure.
리턴 object

ExecuteScalar() 공개 메소드

Executes the scalar.
public ExecuteScalar ( string storedProcedureName ) : object
storedProcedureName string Name of the stored procedure.
리턴 object

Initialize() 공개 메소드

Initializes the provider.
The name of the provider is null. An attempt is made to call on a provider after the provider has already been initialized. The name of the provider has a length of zero.
public Initialize ( string name, NameValueCollection config ) : void
name string The friendly name of the provider.
config System.Collections.Specialized.NameValueCollection A collection of the name/value pairs representing the provider-specific attributes specified in the configuration for this provider.
리턴 void

SqlNetTiersProvider() 공개 메소드

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