Re: help w/Oracle class library for C++ on Linux
From: Harald Maier <maierh_at_myself.com>
Date: Mon, 27 Oct 2003 19:45:43 +0100
Message-ID: <m3u15utt7s.fsf_at_ate.maierh>
Date: Mon, 27 Oct 2003 19:45:43 +0100
Message-ID: <m3u15utt7s.fsf_at_ate.maierh>
[Quoted] stefanie tomko <stef+_at_cs.cmu.edu> writes:
> Now, I just realized that this typedef is found in the following #ifdef in
> ora.h, one of the OCL headers:
>
> #ifdef OCL_DEPRECATED
> typedef OraConnection COraSession;
> typedef OraQuery COraDataset;
>
> but.... I'm not sure where I should be #define-ing OCL_DEPRECATED, or even
> if I should be doing this.
>
> Any suggestions, tips, insight would be REALLY appreciated; this is
> driving me crazy!
You can define it with the gcc command line option -DOCL_DEPRECATED or put it into your source before the OCL headers are included. E.g.
#define OCL_DEPRECATED
Harad Received on Mon Oct 27 2003 - 19:45:43 CET