Class BaseDataSet
Inheritance
System.Object
System.MarshalByRefObject
System.ComponentModel.Component
BaseDataSet
Assembly: FastReport.Olap.dll
Syntax
public abstract class BaseDataSet : Component, IComponent, IDisposable, IBaseDataSet, INotifyPropertyChanged
Methods
AssignedSource()
Declaration
public abstract bool AssignedSource()
Returns
Type |
Description |
System.Boolean |
|
Close()
Declaration
public abstract void Close()
GetActive()
Declaration
public abstract bool GetActive()
Returns
Type |
Description |
System.Boolean |
|
GetBoolean(Int32)
Declaration
public virtual bool GetBoolean(int fieldIndex)
Parameters
Type |
Name |
Description |
System.Int32 |
fieldIndex |
|
Returns
Type |
Description |
System.Boolean |
|
GetByte(Int32)
Declaration
public virtual byte GetByte(int fieldIndex)
Parameters
Type |
Name |
Description |
System.Int32 |
fieldIndex |
|
Returns
Type |
Description |
System.Byte |
|
GetDateTime(Int32)
Declaration
public virtual DateTime GetDateTime(int fieldIndex)
Parameters
Type |
Name |
Description |
System.Int32 |
fieldIndex |
|
Returns
Type |
Description |
System.DateTime |
|
GetDecimal(Int32)
Declaration
public virtual decimal GetDecimal(int fieldIndex)
Parameters
Type |
Name |
Description |
System.Int32 |
fieldIndex |
|
Returns
Type |
Description |
System.Decimal |
|
GetDouble(Int32)
Declaration
public virtual double GetDouble(int fieldIndex)
Parameters
Type |
Name |
Description |
System.Int32 |
fieldIndex |
|
Returns
Type |
Description |
System.Double |
|
GetFieldCount()
Declaration
public abstract int GetFieldCount()
Returns
Type |
Description |
System.Int32 |
|
GetFieldNames()
Declaration
public abstract string[] GetFieldNames()
Returns
Type |
Description |
System.String[] |
|
GetFieldPropeties(Int32)
Declaration
public abstract DataFieldProperties GetFieldPropeties(int dataFieldIndex)
Parameters
Type |
Name |
Description |
System.Int32 |
dataFieldIndex |
|
Returns
GetFieldPropeties(String)
Declaration
public abstract DataFieldProperties GetFieldPropeties(string dataFieldName)
Parameters
Type |
Name |
Description |
System.String |
dataFieldName |
|
Returns
GetFloat(Int32)
Declaration
public virtual float GetFloat(int fieldIndex)
Parameters
Type |
Name |
Description |
System.Int32 |
fieldIndex |
|
Returns
Type |
Description |
System.Single |
|
GetInt16(Int32)
Declaration
public virtual short GetInt16(int fieldIndex)
Parameters
Type |
Name |
Description |
System.Int32 |
fieldIndex |
|
Returns
Type |
Description |
System.Int16 |
|
GetInt32(Int32)
Declaration
public virtual int GetInt32(int fieldIndex)
Parameters
Type |
Name |
Description |
System.Int32 |
fieldIndex |
|
Returns
Type |
Description |
System.Int32 |
|
GetInt64(Int32)
Declaration
public virtual long GetInt64(int fieldIndex)
Parameters
Type |
Name |
Description |
System.Int32 |
fieldIndex |
|
Returns
Type |
Description |
System.Int64 |
|
GetName(Int32)
Declaration
public abstract string GetName(int fieldIndex)
Parameters
Type |
Name |
Description |
System.Int32 |
fieldIndex |
|
Returns
Type |
Description |
System.String |
|
GetOrdinal(String)
Declaration
public abstract int GetOrdinal(string dataFieldName)
Parameters
Type |
Name |
Description |
System.String |
dataFieldName |
|
Returns
Type |
Description |
System.Int32 |
|
GetString(Int32)
Declaration
public virtual string GetString(int fieldIndex)
Parameters
Type |
Name |
Description |
System.Int32 |
fieldIndex |
|
Returns
Type |
Description |
System.String |
|
IsDBNull(Int32)
Declaration
public virtual bool IsDBNull(int fieldIndex)
Parameters
Type |
Name |
Description |
System.Int32 |
fieldIndex |
|
Returns
Type |
Description |
System.Boolean |
|
NotifyPropertyChanged(String)
Declaration
protected void NotifyPropertyChanged(string propertyName)
Parameters
Type |
Name |
Description |
System.String |
propertyName |
|
Open()
Declaration
public abstract bool Open()
Returns
Type |
Description |
System.Boolean |
|
Read()
Declaration
public abstract bool Read()
Returns
Type |
Description |
System.Boolean |
|
Events
PropertyChanged
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type |
Description |
System.ComponentModel.PropertyChangedEventHandler |
|
Implements