Hi Istkhar,
Please make sure you first connected to a certified version, as listed in http://techcommunity.softwareag.com/ecosystem/documentation/webmethods/adapters_estandards/Adapters/webMethods_Adapters_System_Requirements.pdf page 22.
If you’re switching from one DB flavor to another DB flavor, it might not be simple as changing the parameter will do.
First from the database objects perspective, you’ll need to ensure you’ve done the conversion or creation of the db objects like tables, views, stored procedures and functions to the new one.
Then from JDBC Adapter perspective, you’ll need to get the jConnect for JDBC driver for the respective version of Sybase and place it under WmJDBCAdapter\lib\jar\static.
jCONNECT 5.5 type 4 (for Sybase)
For NO_TRANSACTION and
LOCAL_TRANSACTION:
com.sybase.jdbc2.jdbc.SybDataSource
For XA_TRANSACTION:
com.sybase.jdbc2.jdbc.SybXADataSource
jCONNECT 6.05 type 4 (for Sybase)
For NO_TRANSACTION and
LOCAL_TRANSACTION:
com.sybase.jdbc3.jdbc.SybDataSource
For XA_TRANSACTION:
com.sybase.jdbc3.jdbc.SybXADataSource
Also there are some knowledgebase articles in Empower, that you can refer upon if you’ve requirements that you need secure connection instead of normal connection one for the JDBC connection to Sybase.
#Adapters-and-E-Standards#Integration-Server-and-ESB#webMethods