I created a free SQL database from https://www.freesqldatabase.com/
Upon creating the database, I was given a server/database host link, port number, database name, username, and password.
Using that information, how do I connect to the database with Classic ASP?
This is the code I've written so far -
set conn=Server.CreateObject("ADODB.Connection")
conn.Open "Driver={MySQL ODBC 5.2 UNICODE Driver};Server=sql3.freesqldatabase.com;Database=dbname;User=username;Password=password;Option=3;"
It doesn't seem to do the work, though. What changes should I make so that I am able to connect to this database successfully? The database is hosted through PHPMyAdmin but I don't think that matters.