Relax. ASP.NET Web Hosting without the hassles. Ring 1300 787 698
(
Skip Navigation Links : Knowledge Base : SQL Server : Connection Strings

Connection Strings 

SQL Server

The following connection string can be used to access SQL Server.
Please replace the SERVER, USERNAME, PASSWORD and DATABASE words with your settings.



ASP:

Driver={SQL Server}; Server=SERVER;Database=DATABASE;Uid=USERNAME;Pwd=PASSWORD;


ASP.NET:

Server=SERVER;Database=DATABASE;User ID=USERNAME;Password=PASSWORD;

Microsoft Access

ASP:

Provider=Microsoft.Jet.OLEDB.4.0;Data Source=x:\path\to\your\db.mdb
 

 

)