subsonic 3.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它将直接关闭连接。 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