C# Class Tiraggo.Interfaces.tgDataResponse

ファイルを表示 Open project: BrewDawg/Tiraggo Class Usage Examples

Public Properties

Property Type Description
AsyncResult IAsyncResult
DataReader IDataReader
DataSet System.Data.DataSet
Exception System.Exception
LastQuery string
Parameters tgParameters
RowsEffected int
Scalar object
Table System.Data.DataTable

Property Details

AsyncResult public_oe property

Currently not used, but will be when the Asyncronous Commands are added.
public IAsyncResult AsyncResult
return IAsyncResult

DataReader public_oe property

Valid when tgDataProvider.ExecuteReader was called.
public IDataReader DataReader
return IDataReader

DataSet public_oe property

Valid when tgDataProvider.FillDataSet was called.
public DataSet,System.Data DataSet
return System.Data.DataSet

Exception public_oe property

The exception returned by the EntitySpaces DataProvider, if any. See IsException
public Exception,System Exception
return System.Exception

LastQuery public_oe property

Valid when a EntitySpaces dynamic query has been executed. This is the raw sql generated by the query itself.
public string LastQuery
return string

Parameters public_oe property

The parameters need to carry out the command. May also contain output parameters.
public tgParameters,Tiraggo.Interfaces Parameters
return tgParameters

RowsEffected public_oe property

The number of rows effected by the command.
public int RowsEffected
return int

Scalar public_oe property

Valid when tgDataProvider.ExecuteScalar was called.
public object Scalar
return object

Table public_oe property

The DataTable containing the data. Depending on the type of command issued against the provider this may or may not be null.
public DataTable,System.Data Table
return System.Data.DataTable