I assume that by intelligent design the source adapter is parameterized but just wanted confirmation from an SSIS veteran.
As an example if I have a source query in the adapter like:
select
files
,transactions
,dateofsomething
from
reallygoodtablename
where
theparameter = ?
Does this get prepared by sql and get a cached plan or does it get to SQL as an ad hoc query were the ? is already populated.