I started to migrate my system to work under xhb.com and sqlrdd, but I have to keep my old sql connection code, because for my clients who still using my old system version i must keep the support and i dont wanna separate my code for each version of xharbour.
So for do that i thought about distinguish in my code with ifdef...some think like this:
- Code: Select all Expand view
#ifdef __HARBOUR_COM__
//sqlrdd connection
#else
//old sql connection
#endif
Someone Has any idea how to distinguish that ?
thanks!