Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我们的应用程序中,我们最近注意到有一些代码会创建不必要的数据库连接调用,例如数据集中的每个数据行都在进行数据库连接调用以检查某些数据。
我们如何通过代码扫描或数据库查询监控来监控这类问题?有什么建议吗?
如果您使用的是 MS SQL,则可以使用“SQL Profiler” 。无论如何,代码遍历必须让您对此有所了解。
在数据库连接方法中放置一些调试打印,以便您可以跟踪建立的连接及其来源。