GrapeCity ActiveReports for .NET 14.0J
SQL プロパティ (OleDBDataSource)
使用例 

GrapeCity.ActiveReports アセンブリ > GrapeCity.ActiveReports.Data 名前空間 > OleDBDataSource クラス : SQL プロパティ
データソースからレコードを取得するために使用する有効なSQL文を表します。
シンタックス
'宣言
 
Public Property SQL As String
public string SQL {get; set;}
解説

ActiveReportsは、DataReaderを作成し、それを使用してデータをレポートにロードします。SQL文字列には、レポートパラメータのコレクションを置換したり、レポート実行前にユーザーに入力を求めるためのパラメータプレースホルダ構文を含めたりすることができます。

使用例
private void detail1_Format(object sender, System.EventArgs eArgs)
{    
    rptSubBM 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
参照

OleDBDataSource クラス
OleDBDataSource メンバ
ParameterCollection クラス
Parameter クラス
Parameters プロパティ