data binding
Is that possible to use the data source control if the sql itself is dynamic?
For instance, if the SQL may be
select * from table_1
or
select * from table_1 where criteria1 = myVar1
or
select * from table_1 where criteria2 = myVar2
the important thing is all myVar are generated at run-time not design time.
|