sql server express:单个用户的开发人员计算机上没有可用的池连接

发布于 2024-11-10 18:56:26 字数 292 浏览 3 评论 0原文

我目前正在将一个数据库支持的 Web 应用程序从 MS Access 移植到 SQL Server(暂时是 Express)。虽然期望提高数据库的可用性,但我在连接时遇到超时,错误消息“无法及时从池中获取连接”(抱歉,原始错误消息是德语,所以我只是解释它)。

当我是机器上唯一的用户,仅测试代码时,就会发生这种情况。即使考虑到我已经中止了一些执行并且可能存在一些连接,我也无法想象我已经达到了 100 个连接的池大小。此外,我仍然可以从管理工作室运行查询。我该如何找出数据库出了什么问题?另外,我在活动监视器中没有看到有关池状态的信息...有什么帮助吗?

I'm currently porting a DB-backed web application from MS Access to SQL Server (Express, for the time being). While expecting improved availability of the DB, I'm getting timeouts when connecting, error message "couldn't get connection from pool in time" (sorry original error message is in German so I'm only paraphrasing it).

This is happening while I'm the only user on the machine, only testing the code. Even taking into account that I have aborted a few executions and may have some connections lying around, I can't imagine I've reached the pool size of 100 connections. Also, I can still run queries from the management studio. How do I go about finding out what's wrong with the database? Also, I don't see information about the pool status in the activity monitor... any help?

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

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

发布评论

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

评论(1

一袭白衣梦中忆 2024-11-17 18:56:26

您在某处保持连接打开。最好将数据库连接的每次使用都包含在 using 语句中,这样就可以保证它们在不再使用时被关闭/处置。

不知道您正在使用什么数据访问层,我无法建议具体的代码。

You're leaving connections open somewhere. It's best if every use of a database connection is wrapped in a using statement, so that you're guaranteed that they're closed/disposed when they're no longer being used.

Not knowing what data access layer you're using, I can't suggest specific code.

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