I'm trying to connect to a web based MySQL server but i cant figure out the syntax for the connection. I have;
Code:
var conn = new ActiveXObject("ADODB.Connection");
var str = "PROVIDER=sqloledb;Data Source=http://cell-lms.com;Integrated Security=SSPI;Database=celllms_romsuser;UID=celllms_trial;PWD=trial";
conn.Open(str);
What might a correct Data Source look like? Are there any other feilds I need?
Thanks
Jon