Click here to Skip to main content
15,906,567 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Which is mysql connector that has proxy ...when iam using this code

SQL
NetworkCredential credential=new NetworkCredential("User","Password");
WebProxy proxy=new WebProxy("10.0.0.1",808);
proxy.Credentials=credential; 
MySqlConnection conn = new MySqlConnection();conn.ConnectionString = Host=192.168.0.10;port=3307;user=root;password=root";
conn.Proxy=proxy;


here iam not getting this con.Proxy=proxy because there is no defenision for proxy in my mysql connector ....If anybody knows mysql connector that has proxy plz post it asap please help me
Posted
Updated 12-Apr-12 7:31am
v2
Comments
Nelek 12-Apr-12 13:31pm    
Added tags and some spelling

1 solution

Have you gone to the MySQL forum and asked the same question on how to access through a proxy?
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900