C# Class Tiraggo.Interfaces.tgDataResponse

Show file 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 property

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

DataReader public property

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

DataSet public property

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

Exception public property

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

LastQuery public 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 property

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

RowsEffected public property

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

Scalar public property

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

Table public 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