Subject Re: [firebird-support] howto determine fb-version from ibase.h
Author Lutz Mueller
> Check out:
>
> - isc_database_info, returns an IB 'equivalent' string ('WI-T6.3.0.3744
> Firebird 1.5 Release Candidate 4')
>
> - isc_info_svc_server_version, returns the specific FB version string
> ('WI-T1.5.0.3744 Firebird 1.5 Release Candidate 4')
>
>
> Sean
>
thank you,
but i rather need the version info for the preprocessor, so i can do something
like:

#if FBVERSION >= 1.5
isc_queue_events(...)
#else
isc_queue_events(...)
#endif

lutz