Class RVPostgresDataSourceItem
PostgreSQL data source item
Inheritance
System.Object
RVPostgresDataSourceItem
Namespace: Reveal.Sdk.Data.PostgreSQL
Assembly: Infragistics.Reveal.Connectors.Postgres.dll
Syntax
public class RVPostgresDataSourceItem : RVSqlPDSDataSourceItem
Constructors
RVPostgresDataSourceItem(RVPostgresDataSource)
Declaration
public RVPostgresDataSourceItem(RVPostgresDataSource dataSource)
Parameters
Type | Name | Description |
---|---|---|
RVPostgresDataSource | dataSource |
RVPostgresDataSourceItem(RVPostgresDataSource, BaseDataSourceItem)
Declaration
public RVPostgresDataSourceItem(RVPostgresDataSource dataSource, BaseDataSourceItem modelDataSourceItem)
Parameters
Type | Name | Description |
---|---|---|
RVPostgresDataSource | dataSource | |
Infragistics.ReportPlus.DashboardModel.BaseDataSourceItem | modelDataSourceItem |
Properties
FunctionName
(Optional) name of the function to get data from, the function is expected to return a result set and might have multiple parameters.
Declaration
public string FunctionName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FunctionParameters
Parameters to be passed to the function, if there is such specified in FunctionName.
Declaration
public Dictionary<string, object> FunctionParameters { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<System.String, System.Object> |
Schema
Name of the schema the referenced table belongs to
Declaration
public string Schema { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
CreateModelDataSourceItem()
Declaration
public override BaseDataSourceItem CreateModelDataSourceItem()
Returns
Type | Description |
---|---|
Infragistics.ReportPlus.DashboardModel.BaseDataSourceItem |