Class RVAthenaDataSourceItem

Amazon Athena data source item.

Inheritance
System.Object
RVAthenaDataSourceItem
Implements
Namespace: Reveal.Sdk.Data.Amazon.Athena
Assembly: Infragistics.Reveal.Connectors.Athena.dll
Syntax
public class RVAthenaDataSourceItem : RVDataSourceItem, IDataSourceItem, IParameterizedCustomQuerySupport, ICustomQuerySupport

Constructors

RVAthenaDataSourceItem(RVAthenaDataSource)

Declaration
public RVAthenaDataSourceItem(RVAthenaDataSource dataSource)
Parameters
Type Name Description
RVAthenaDataSource dataSource

RVAthenaDataSourceItem(RVAthenaDataSource, BaseDataSourceItem)

Declaration
public RVAthenaDataSourceItem(RVAthenaDataSource dataSource, BaseDataSourceItem modelDataSourceItem)
Parameters
Type Name Description
RVAthenaDataSource dataSource
Infragistics.ReportPlus.DashboardModel.BaseDataSourceItem modelDataSourceItem

Properties

CustomQuery

(Optional) Custom SQL query to use when getting data.

Declaration
public string CustomQuery { get; set; }
Property Value
Type Description
System.String

CustomQueryParameters

(Optional) Parameters to be used in the custom SQL query, if any. The parameters are expected to be named parameters in the query, like @param1, @param2, etc.

Declaration
public Dictionary<string, object> CustomQueryParameters { get; set; }
Property Value
Type Description
System.Collections.Generic.Dictionary<System.String, System.Object>

Table

Table or view for this datasource item.

Declaration
public string Table { get; set; }
Property Value
Type Description
System.String

Methods

CreateModelDataSourceItem()

Declaration
public override BaseDataSourceItem CreateModelDataSourceItem()
Returns
Type Description
Infragistics.ReportPlus.DashboardModel.BaseDataSourceItem
Overrides
RVDataSourceItem.CreateModelDataSourceItem()

Implements

IParameterizedCustomQuerySupport
ICustomQuerySupport