ActiveReports 9
OleDBDataSource Class
Members  Example 

Represents a section report data source based on the OleDb ADO.NET data provider.
Object Model
OleDBDataSource Class
Syntax
'Declaration
 
Public NotInheritable Class OleDBDataSource 
public sealed class OleDBDataSource 
Example
private void detail_Format(object sender, System.EventArgs eArgs)
{    
    rptSub rpt = New rptSubBM();    
    GrapeCity.ActiveReports.Data.OleDBDataSource subDS = new GrapeCity.ActiveReports.Data.OleDBDataSource();    
    subDS.ConnectionString = ((GrapeCity.ActiveReports.Data.OleDBDataSource)(this.DataSource)).ConnectionString;    
    subDS.SQL = "Select * from products where categoryID = " + m_categoryID;    
    rpt.DataSource = subDS;    
    ctlSubReport.Report = rpt;
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Dim rpt As New rptSubBM()
    Dim subDS As New GrapeCity.ActiveReports.Data.OleDBDataSource()    
    subDS.ConnectionString = CType(Me.DataSource, GrapeCity.ActiveReports.Data.OleDBDataSource).ConnectionString    
    subDS.SQL = "Select * from products where categoryID = " + m_categoryID    rpt.DataSource = subDS    
    Me.ctlSubreport.Report = rpt 
End Sub
Inheritance Hierarchy

System.Object
   GrapeCity.ActiveReports.Data.OleDBDataSource

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

OleDBDataSource Members
GrapeCity.ActiveReports.Data Namespace

 

 


Copyright © 2014 GrapeCity, inc. All rights reserved

Support Forum