ADO.NET 中 SqlConnection (SQL-Server) 的 SPID
我可以从 ADO.NET 中的 SqlConnection 对象(SQL-Server 数据库)获取 SPID 吗?
连接对象在其生命周期内的 SPID 是否始终相同?
Can I get a SPID from a SqlConnection Object (SQL-Server Database) in ADO.NET?
Is the SPID always the same for a connection object during its lifetime ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
select @@SPID
为您提供 spid。它应该是常量,但如果您有连接池,则可能会被回收。
select @@SPID
gives you the spid.It should be constant, but may be recycled if you have connection pooling.