views:

16

answers:

1

Hi,

My classic ASP app is connecting to SQL server 2000 installed on a network server. The current code works:

myConn.Open ("Driver={SQL Server};Server=myNetServ;Database=myDB;UID=myID;PWD=myPWD;Trusted_Connection=No;")

Now my app needs to connect to a named instance "SQL2008" of the SQL server 2008 installed on the same network server. This code doesn't work:

myConn.Open ("Driver={SQL Server Native Client 10.0};Server=myNetServ\SQL2008;Database=myDB;UID=myID;PWD=myPWD;Trusted_Connection=No;")

Please help!