Class DataSourceInfo
Represents a data source for the report.
Inheritance
Inherited Members
Namespace: BoldReports.Web.ReportViewer
Assembly: BoldReports.Web.dll
Syntax
public class DataSourceInfo
  Constructors
DataSourceInfo()
Declaration
public DataSourceInfo()
  Properties
ConnectString
Gets or sets the string used to open database connection.
Declaration
public string ConnectString { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | A string that includes the source database name, and other parameters.  | 
      
DataProvider
Gets or sets the data provider of the data source.
Declaration
public string DataProvider { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | A String containing the data provider of the data source.  | 
      
DataSourceName
Gets or sets the name of the data source in a report.
Declaration
public string DataSourceName { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | A String containing the name of the report data source.  | 
      
IntegratedSecurity
Gets or sets a boolean value that indicates whether the current Windows account credentials are used for authentication or not.
Declaration
public bool IntegratedSecurity { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Boolean | It set to true, if current Windows account credentials are used ; otherwise, false.  | 
      
SharedDataSourceName
Gets or sets the name of the shared data source used in the report.
Declaration
public string SharedDataSourceName { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | A String containing the name of the shared report data source.  | 
      
UserName
Gets or sets the user name to connect the database of the server.
Declaration
public string UserName { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | A string containing the user name of the database.  |