Tagged Questions
2
votes
2answers
665 views
Delphi 2007 and {$IFDEF…} directive, fails to see our conditional
We have the following in our codebase, in a component file:
{$IFDEF ADO}
FDatabase : TADODatabase;
{$ELSE}
FDatabase : TODBCDatabase;
{$ENDIF}
The reason is that for various legacy applications, ...