Link to home
Start Free TrialLog in
Avatar of rmtogether
rmtogether

asked on

C# connection to MySQL with SSH

Hi, expert

I am working on couple DB programs that interact with MySQL.  currently, I am using ODBC connection to the MySQL DB and my connection string like below

string odbcConnect_dev = "Driver={MySQL ODBC 5.1 Driver};Server=aaa ;Database=bbb;User=ccc; Password=ddd;Option=3;";

It works fine, but there is another MySQL server which requires SSH connection.
 Is it possible to use SSH with ODBC? or
what should I do to make my issue work?
Should I install some 3rd party SSH component in my local machine first?

Thanks a lot
ASKER CERTIFIED SOLUTION
Avatar of Pratima
Pratima
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
Avatar of rmtogether
rmtogether

ASKER

thank you