与 Firebird 的 ADO 连接保持连接
我注意到与 FireBird 2.1 服务器的 ADO 连接保持打开状态。连接是从用户会话单元中的 Intraweb 应用程序发起的。
我使用 ADOConnection.Connected := False;
但这似乎并没有关闭连接。我还尝试过ADOConnection.Close;
。
有没有办法确保 ADO 连接关闭?
谢谢,彼得·布洛克特
I've noticed that ADO Connections to our FireBird 2.1 Server stays open. The connections are initiated from an Intraweb Application in the UserSession Unit.
I use ADOConnection.Connected := False;
but that does not seem to close the connection. I've also tried ADOConnection.Close;
.
Is there a way to ensure that an ADO Connection is closed?
Thanks, Pieter.Blockquote
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试释放并重新创建 TADOConnection 对象。
You can try to free and recreate TADOConnection object.
您确定 IW 使用的正是 TADOConnection 对象吗?
或者正在幕后创建一个新的连接对象而您忘记清理它?
Are you sure that IW is using that exactly TADOConnection object?
Or a new connection object is being created behind-the-scenes and you forgot to clean it?