Click here to Skip to main content
15,885,767 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I use this connection to connect to my .sdf database:
"Data Source = c:\\Database1.sdf"

but when i want to open the connection by "connection.open", it throws this exception:

"A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)".

then I can't connect to the database.

how can I fix this exception problem?
Posted
Updated 15-Dec-13 9:00am
v3

1 solution

Don't try to access it via SQL server - use the SqlCE connections instead.

This means replacing:
SqlConnection with SqlCeConnection
SqlCommand with SqlCeCommand
and so forth.

You will also need to provide a reference to System.Data.SqlServerCe (in system.data.sqlserverce.dll)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900