Share via


ReportingService2005.PrepareQuery Method

[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Returns a dataset containing the fields retrieved by the delivery query for a data-driven subscription.

Syntax

'Declaration
Public Function PrepareQuery ( _
    DataSource As DataSource, _
    DataSet As DataSetDefinition, _
     ByRef Changed As Boolean, _
     ByRef ParameterNames As String() _
) As DataSetDefinition
public DataSetDefinition PrepareQuery (
    DataSource DataSource,
    DataSetDefinition DataSet,
    out bool Changed,
    out string[] ParameterNames
)
public:
DataSetDefinition^ PrepareQuery (
    DataSource^ DataSource, 
    DataSetDefinition^ DataSet, 
     bool% Changed, 
     array<String^>^% ParameterNames
)
public DataSetDefinition PrepareQuery (
    DataSource DataSource, 
    DataSetDefinition DataSet, 
    /** @attribute  */ /** @ref */ boolean Changed, 
    /** @attribute  */ /** @ref */ String[] ParameterNames
)
JScript does not support passing value-type arguments by reference.

Parameters

  • DataSource
    The data source for the delivery query.
  • DataSet
    The dataset containing the delivery query and fields for a data-driven subscription.
  • Changed
    A Boolean value that indicates whether the dataset that was passed to the method is different from the one returned by the method. Use this property to determine whether the input dataset is different from the output dataset.
  • ParameterNames
    A parameters element that provides information about parameters in the query. This argument is only used when the DataSource references a model.

Return Value

A DataSetDefinition object that contains the fields and the delivery query that are retrieved from the given data source.

Remarks

Pass the DataSetDefinition object that is returned by the PrepareQuery method as input to the CreateDataDrivenSubscription and SetDataDrivenSubscriptionProperties methods.

The delivery query returns a set of fields that can be mapped to report parameter values and delivery extension settings for data-driven subscriptions. Each row in the result set contains values for a single recipient, such as an e-mail address to which the report is delivered.

The delivery query must be valid for one of the data processing extensions that are installed on the report server. For more information, see Data Processing Extensions Overview.

Thread Safety

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.

Target Platforms

See Also

Reference

ReportingService2005 Class
ReportingService2005 Members
Microsoft.WSSUX.ReportingServicesWebService.RSManagementService2005 Namespace