Interface IBaseDataSet
Namespace: FastReport.Olap.Cube
Assembly: FastCube.Core.dll
Interface for cube dataset.
public interface IBaseDataSet
Methods
AssignedSource()
Returns information that source is assigned.
bool AssignedSource()
Returns
Close()
Closes the connection. Not equal to the dispose. must be called separately.
void Close()
GetActive()
Gets information that connection is active.
bool GetActive()
Returns
GetBoolean(int)
Gets bool type value by field index.
bool GetBoolean(int fieldIndex)
Parameters
fieldIndex
int
Returns
GetByte(int)
Gets byte type value by field index.
byte GetByte(int fieldIndex)
Parameters
fieldIndex
int
Returns
GetDateTime(int)
Gets datetime type value by field index.
DateTime GetDateTime(int fieldIndex)
Parameters
fieldIndex
int
Returns
GetDecimal(int)
Gets decimal type value by field index.
decimal GetDecimal(int fieldIndex)
Parameters
fieldIndex
int
Returns
GetDouble(int)
Gets double type value by field index.
double GetDouble(int fieldIndex)
Parameters
fieldIndex
int
Returns
GetFieldCount()
Gets number of the fields.
int GetFieldCount()
Returns
GetFieldNames()
Gets all field names.
string[] GetFieldNames()
Returns
string[]
GetFieldPropeties(string)
Gets field proeperties by field name.
DataFieldProperties GetFieldPropeties(string dataFieldName)
Parameters
dataFieldName
string
Returns
GetFieldPropeties(int)
Gets field properties by field index.
DataFieldProperties GetFieldPropeties(int dataFieldIndex)
Parameters
dataFieldIndex
int
Returns
GetFloat(int)
Gets float type value by field index.
float GetFloat(int fieldIndex)
Parameters
fieldIndex
int
Returns
GetInt16(int)
Gets int16 type value by field index.
short GetInt16(int fieldIndex)
Parameters
fieldIndex
int
Returns
GetInt32(int)
Gets int32 type value by field index.
int GetInt32(int fieldIndex)
Parameters
fieldIndex
int
Returns
GetInt64(int)
Gets int64 type value by field index.
long GetInt64(int fieldIndex)
Parameters
fieldIndex
int
Returns
GetName(int)
Gets name of the field by field index.
string GetName(int fieldIndex)
Parameters
fieldIndex
int
Returns
GetOrdinal(string)
Gets index of the field by field name.
int GetOrdinal(string dataFieldName)
Parameters
dataFieldName
string
Returns
GetString(int)
Gets string type value by field index.
string GetString(int fieldIndex)
Parameters
fieldIndex
int
Returns
GetValue(int)
Gets boxed value from database
object GetValue(int fieldIndexOfId)
Parameters
fieldIndexOfId
int
Returns
IsDBNull(int)
Checks the field index for DBNull type.
bool IsDBNull(int fieldIndex)
Parameters
fieldIndex
int
Returns
Open()
Opens the connection.
bool Open()
Returns
Read()
Reads the data.
bool Read()