Hi all, i am looking for a way to connect to a Remote MySQL server through HTTP using VB.NET. Actually my application has no direct access to internet. The application connects to a proxy server which is blocking access to database server. The proxy server only allows web requests. How can i connect in this scenario. Please help
Connection to MySQL through HTTP using Vb.NET
Collapse
X
-
Tags: None
-
Thanks kenobewan
Previously i have been using the following code to connect to MySQL server after adding a reference to MySQL.Data.dll
Code:Dim cnString As String cnString = "server=xxx.xxx.xxx.xxx;database=dbname;UID=user;password=123;" cn = New MySqlConnection(cnString) cn.Open() MsgBox("connected")
I have no idea how to use HttpWebRequest with above code.Comment
-
Comment
Comment