DRIVER={SQL Server};SERVER=" & svrName & ";DATABASE=DB Name; UID=" & svrUser & "; PWD=" & svrPass & ";
Main Topics
Browse All TopicsI have an old asp classic web app I need to setup on a different web server and I'm having problems connecting to the existing remote database via the asp classic code. I can connect just fine via asp.net code.
The .NET connection string looks like this:
<connectionStrings>
<add name="XXXConnectionString"
providerName="System.Data.
</connectionStrings>
The original asp classic connection string looks like this:
Set Conn = Server.CreateObject("ADODB
Conn.Open("DSN=MyCat; UID=MyId; PWD=MyPass;")
How do I update the connection string to get it to work? On the old box, the database was on the same machine, so it didn't need to get a host name, but now it does.
I tried this, but it errors;
Set Conn = Server.CreateObject("ADODB
Conn.open "DSN=xxx.xxx.com;UID=MyId;
Thanks!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: AnobePosted on 2009-10-30 at 16:20:58ID: 25707408
Use the connection string shown below within open function or set as connection string property of Conn object
DRIVER={SQL Server};SERVER=" & svrName & ";DATABASE=FS_Billing; UID=" & svrUser & "; PWD=" & svrPass & ";