ASP Scripting
Will Chili!Soft ASP allow me to use DSN's to connect to a MySQL database?
No, you will need to use a DSNless connection by replacing the code with the following
var rsEvents = Server.CreateObject("ADODB.Recordset"); rsEvents.ActiveConnection = "Driver={MySQL}; DATABASE=databasename; UID=username; PASSWORD=password;";
<< Back
|