如何使用web.config连接到SQL Server CE

时间:2015-03-24 10:30:17

标签: asp.net database web-config sql-server-ce-4

我想知道如何从我的Web应用程序连接到SQL Server Compact Edition数据库?

通常我在代码中插入连接字符串。如何连接App_Data文件中位于web.config的数据库?

提前致谢

1 个答案:

答案 0 :(得分:0)

web.configconnectionString喜欢

<connectionStrings>
<add name="MyConnection" connectionString="Data Source=|YourDirectory|\DBName.sdf"/>
</connectionStrings>

如果需要,请进一步阅读 here