KMoody
Member
I need to initialize and use a set of variables in WHERE clauses across several programs. It has been suggested that I initialize my variables within an include and add that include file to my programs.
I am very reluctant to use includes for a couple reasons:
Are there any other reasons why using an include in this situation is a bad practice? Alternatively, is it actually all right to use an include file in this case?
I am very reluctant to use includes for a couple reasons:
- Within the programs, it is not obvious where the included variables come from.
- Adding the include may add unnecessary overhead.
Are there any other reasons why using an include in this situation is a bad practice? Alternatively, is it actually all right to use an include file in this case?