You can use variable parameters in the ole db source to provide a dynamic table, dynamic conditional statement, or a dynamic sql statment. By clicking on the ole db source, you can change the data access mode. Below are examples for some of the different type of access modes in which you can use package variables:
parameterize table- use the table name or view name variable. Then select the variable name that contains a valid table name;
parameterize conditional statement: use sql command. Sql Command text would be something like : Select * From Table Where id = ?. Then map your variable.
dynamic sql in a variable : use the sql command from variable. You can then place your sql statment in a package string variable: Select * From Table
I was not entirely sure what you were trying to parameterize so, I kind of gave you the run down on some possibile options that may/may not help you with your specifice issue. I hope this helps.