在 asp.net sqldatasource 中连接到 sql ce 时出错
我在尝试将我的 asp.net 项目连接到 sql ce 4 时不断收到错误。
“建立与 SQL Server 的连接时发生网络相关或特定于实例的错误。找不到服务器或无法访问服务器。”
更新 - 如果您收到此错误,请确保在连接字符串和 sqldatasource 中指定正确的提供程序名称。
providerName =“System.Data.SqlServerCe.4.0”
I keep getting an error while trying to connect my asp.net project to sql ce 4.
"A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible."
UPDATE - If you are getting this error make sure you specify the proper provider name in both the connection string and the sqldatasource.
providerName = "System.Data.SqlServerCe.4.0"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
还值得了解的是,如果您希望在连接字符串上使用“GetFactory”方法将数据库连接代码与业务逻辑分离,则需要确保正确的提供程序名称。
It's also worth knowing that you need to ensure a correct provider name if you wish to use the 'GetFactory' methods on a connection string to decouple your db connection code from your business logic.
我也遇到了这个问题,因为我从 SQL Server Express 切换到 SQL Server Compact 4.0。
我的代码:
谢谢,这对我帮助很大!
I had the problem too, because I switched from SQL Server Express to SQL Server Compact 4.0.
My code:
Thank you, this helped me a lot!