Link to home
Start Free TrialLog in
Avatar of Senz79
Senz79Flag for India

asked on

Connect to DB2

Hello All

I want to connect to DB2 using C# application . I have the following information about the DB2 server . How can i write the function


Driver Class : com.ibm.db2.jcc.DB2Driver (v2.11)
Driver URL : jdbc:db2://testDB:60000/TESTDB:currentSchema=USER;
Username and Password

Thanks
Senz
Avatar of Rahul Goel
Rahul Goel
Flag of India image

Use this connectionstring
Server=myAddress:myPortNumber;Database=myDataBase;UID=myUsername;PWD=myPassword;Max Pool Size=100;Min Pool Size=10;
ASKER CERTIFIED SOLUTION
Avatar of Senz79
Senz79
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial