Being new to the administrative side of SQL Server 2005, I do not know quite how to correct the following error using a SqlConnection object from VB.Net when trying to connect to a database (like Northwind.mdf) in SQL Server 2005 (Developer's Edition installed on my local PC). The error I get is:
Unhandled Exception: System.Data.SqlClient.SqlException: SQL Server does not exist or access denied.
SQL Server 2005 seems to have installed properly and I am using Windows integrated security in the parameters of the connection object. Being that this is on my own PC, I should have administrator access.
The connection string is defined as:
workstation id="JFS-DEV";packet size=4096;integrated security=SSPI;data source="(Local)";attachdbfilename="C:\Program Files\Microsoft SQL Server\MSSQL$NETSDK\Data\northwnd.mdf";persist security info=False;initial catalog=Northwind
Any help in correcting this error is greatly appreciated.
Unhandled Exception: System.Data.SqlClient.SqlException: SQL Server does not exist or access denied.
SQL Server 2005 seems to have installed properly and I am using Windows integrated security in the parameters of the connection object. Being that this is on my own PC, I should have administrator access.
The connection string is defined as:
workstation id="JFS-DEV";packet size=4096;integrated security=SSPI;data source="(Local)";attachdbfilename="C:\Program Files\Microsoft SQL Server\MSSQL$NETSDK\Data\northwnd.mdf";persist security info=False;initial catalog=Northwind
Any help in correcting this error is greatly appreciated.