在 asp.net sqldatasource 中连接到 sql ce 时出错

发布于 2024-12-03 07:20:44 字数 394 浏览 0 评论 0原文

我在尝试将我的 asp.net 项目连接到 sql ce 4 时不断收到错误。

“建立与 SQL Server 的连接时发生网络相关或特定于实例的错误。找不到服务器或无法访问服务器。”

更新 - 如果您收到此错误,请确保在连接字符串和 sqldatasource 中指定正确的提供程序名称。

providerName =“System.Data.SqlServerCe.4.0”

如何在ASP.NET中连接到SQL Server Compact 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"

How connect to SQL Server Compact 4.0 in ASP.NET?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

缺⑴份安定 2024-12-10 07:20:44

还值得了解的是,如果您希望在连接字符串上使用“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.

说好的呢 2024-12-10 07:20:44

我也遇到了这个问题,因为我从 SQL Server Express 切换到 SQL Server Compact 4.0。
我的代码:

            SqlDataSource SqlDataSource2 = new SqlDataSource();
            SqlDataSource2.ID = "SqlDataSource2";
            SqlDataSource2.ConnectionString = @"Data Source=|DataDirectory|\database.sdf;Password=passwordddddDDD;Persist Security Info=False;";
            SqlDataSource2.SelectCommand = "SELECT * FROM [table1]";
            SqlDataSource2.ProviderName = "System.Data.SqlServerCe.4.0"; // THIS line solved my problem!
            GridView1.DataSource = SqlDataSource2;

谢谢,这对我帮助很大!

I had the problem too, because I switched from SQL Server Express to SQL Server Compact 4.0.
My code:

            SqlDataSource SqlDataSource2 = new SqlDataSource();
            SqlDataSource2.ID = "SqlDataSource2";
            SqlDataSource2.ConnectionString = @"Data Source=|DataDirectory|\database.sdf;Password=passwordddddDDD;Persist Security Info=False;";
            SqlDataSource2.SelectCommand = "SELECT * FROM [table1]";
            SqlDataSource2.ProviderName = "System.Data.SqlServerCe.4.0"; // THIS line solved my problem!
            GridView1.DataSource = SqlDataSource2;

Thank you, this helped me a lot!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文