• Parameters can be passed to the where clause if the entire query is stored in a string variable.

    If there are 2 parameters to be passed, then create 3 variables.

    One variable should be -- Sting data type contains the actual query -- Set Evaluate as Expression property to TRUE

    Other two variables can be of any data type depending on the type of parameter to be passed.

    See Example below:

    User::Query = "SELECT * from CLAIMDX

    where ClientID = "+ (DT_WSTR, 10) @[User::clientID]

    + " AND InsertDateTime = TO_DATE(' "

    + (DT_WSTR, 10) @[User::InsertDate] + " ', 'MM/DD/YYYY')"

    This example has the query stored in the variable USER::Query

    Parameters passed are clientID (numeric data type) and InsertDate(Date type).

    Note that we need TypeCast operators to convert each type to string.

    Also make use of the "Evaluate Expression" feature to verify that the query created is valid and you should be able to run it in Oracle database.

    ------------------
    Why not ?