I currently have applications that extract data via ODBC against Intersystems Cache 4 and Cache 5 databases. I currently do this by copying either the 4 or 5 version of the driver (CacheODBC4.dll or CacheODBC5.dll) to file CacheODBC.dll and connecting
via a DSN. CacheODBC.dll is what the ODBC manager refers to when Creating,modifying ODBC DSNs.
This means that I can only be extracting against one of them at a time since all of the code references CacheODBC.dll
Can I refer to a specific dll in a connection string. Instead of using a DSN, i would like my Cache 4 apps to reference CacheODBC4.dlland my Cache 5 apps to reference CacheODBC5.dl, allowing them to run at the the same time.
Thank you....Jim