ADODB SQL Server connection not working only in IE9

dataman

New Member
Got a bit of an odd problem.This code works fine in every other browser, just not in IE9. Standard ADODB connection string being used:\[code\]Provider=sqloledb;Server=localhost\sqlexpress;Database=DB;uid=DBuser;password=DBPassword;MultipleActiveRecordSets=true;\[/code\]Executed thus:\[code\]Dim dbGlobalSet dbGlobal = Server.CreateObject("ADODB.Connection")dbGlobal.Open sConnectionString\[/code\]In every browser this works and the application then goes on to load, in IE9 I get the following error message back:-2147467259: [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied.
 
Back
Top