Hi,
My PowerBuilder desktop application (developed in 2017 R3) connects with the Sybase database. I am using "SYC" DBMS for connection. Now the situation is I have two different versions of Sybase client installed on my machine i.e. v15.7 and v16.0. Now I need to enforce my PowerBuilder application to connect to database using Sybase Client v16.0 only (and not 15.7.) I tried setting release parameter as 16 in DBParam property of SQLCA as below:
SQLCA.DBMS = "SYC"
SQLCA.dbParm="EncryptPassword='True',Release='16'"
But I am not sure whether it is connecting with 16.0 only because when I tried to put any random value for release, still the application was connecting with the database. Can someone help here.
Please note, we can't remove Sybase Client 15.7 as it is being used by other applications. Thanks!