H
Henrootje
I have a query that is called 'qryROSR' which in SQL looks like
SELECT tblqROSR1.*
FROM tblqROSR1;
I would like to programmatically be able to change the SQL in the
query to
SELECT tblqROSR2.*
FROM tblqROSR2;
(mind the change from 1 ->2, users should be able to choose between 1
-2 -3 -4 )
without changing the name of the query.
Why? All following queries and reports and such are based on this query
and that way I can switch my db form using tblqROSR1 to using tblqROSR2
Suggestions anyone ?
TIA,
Henro
SELECT tblqROSR1.*
FROM tblqROSR1;
I would like to programmatically be able to change the SQL in the
query to
SELECT tblqROSR2.*
FROM tblqROSR2;
(mind the change from 1 ->2, users should be able to choose between 1
-2 -3 -4 )
without changing the name of the query.
Why? All following queries and reports and such are based on this query
and that way I can switch my db form using tblqROSR1 to using tblqROSR2
Suggestions anyone ?
TIA,
Henro