Tengo una base de datos en el archivo C:\Users\Pawel\Documents\DB.sdf
. ¿Cómo me puedo conectar?Excepción al intentar conectar con la base de datos .sdf
El código simple a continuación no funciona y genera excepciones.
Código:
[WebMethod]
public String TestCon()
{
SqlConnection sql = new System.Data.SqlClient.SqlConnection(
@"Data Source=C:\Users\Pawel\Documents\DB.sdf");
string str = "OK";
try
{
sql.Open();
sql.Close();
}
catch (Exception ex)
{
str = ex.Message;
}
return str;
}
Resultado:
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)
¿Qué me falta? ¿Qué debo hacer para abrir la conexión correctamente?
EDIT:
System.NotSupportedException: SQL Server Compact is not intended for ASP.NET development.
Gran: P
¿Está utilizando SqlCompact? Me parece que está usando el SQL Client normal –