When I am trying to connect to remote mysql from an .asp page using vbscript it gives me the following error ** An error occurred on the server when processing the URL. Please contact the system administrator. ** Please help me with this. Thanks in Advance.
<%
dim myConnection
dim connectString
username = "ssadhu"
password = "Jan211990"
database = "qtoa"
host = "db4free.net"
Set myConnection = Server.CreateObject("ADODB.Connection")
Set RSTitleList = Server.CreateObject("ADODB.Recordset")
connectString = "DRIVER={MySQL ODBC 3.51 Driver}; SERVER="&host&"; DATABASE="&database&"; UID="&username&";PASSWORD="&password&"; OPTION=3"
myConnection.open connectString
Set RSTitleList = myConnection.Execute( "Select * From questions") %>
<!-- Begin our column header row -->
<!-- Ok, let's get our data now -->
<% do while not RStitleList.EOF %>
<p> <%=RStitleList("id")%>).
<b><%=RSTitleList("question") %></b>      <%=RSTitleList("answer") %> <!--<a href="emailaddress.htm">-->More►<!--</a>--> <br>
<p>     <font color="purple"> answered by </font> <b>Sadhu</b> on 1-10-2015 </p>
</p>
<% RSTitleList.MoveNext%>
<%loop %>