subsonic 3.0如何正确关闭连接?

发布于 2024-08-02 08:14:23 字数 409 浏览 5 评论 0原文

我正在使用 Subsonic 3.0.0.3 Active Directory。 在程序工作期间,打开许多与 MySQL 数据库的连接。我可以在 MySQL 管理员中看到这个线程。 在这种情况下我正在使用数据库:

var db = new DB();
var nClient = Enumerable.First(db.clients, c => c.id_client == cl.ID);
nClient.data = data;
nClient.Update();

另一个例子

var nClient = new client { data= cl.data };
nClient.Save();

如何正确关闭与数据库的连接?或者如何只使用一个数据库连接?

I'm using Subsonic 3.0.0.3 Active Directory.
During program work, opens many connections to MySQL data base. I can see this threads in MySQL Administrator.
I'm working with data base in this case:

var db = new DB();
var nClient = Enumerable.First(db.clients, c => c.id_client == cl.ID);
nClient.data = data;
nClient.Update();

another example

var nClient = new client { data= cl.data };
nClient.Save();

How should I correctly close connection to database? Or how to use only one connection to database?

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

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

发布评论

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

评论(1

偏爱自由 2024-08-09 08:14:23

它将直接关闭连接。 SubSonic 的设计目的是仅在需要时打开连接,并在完成后关闭。

如果您想对多个查询使用相同的连接,则需要查看批量查询

It will close the connection straight way. SubSonic was designed to only open the connection when needed and close when finished.

If you want to use the same connection for several queries you need to look in to the batch query

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