性能差异 - 多个查询放在一个 sql 命令对象中,每个查询一个 sql 命令对象

发布于 2024-10-30 04:37:42 字数 113 浏览 0 评论 0原文

当多个查询放在一个字符串对象中并传递给 sql 命令并仅运行一次

并且

每个查询创建一个 sql 命令对象并且每个查询都一一运行时,是否存在性能差异。

谢谢, 大卫

Is there any performance difference when multiple queries are put together in an string object and and passed for sql command and running it only once

and

One sql command object is created per query and each is run one by one.

Thanks,
David

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

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

发布评论

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

评论(1

背叛残局 2024-11-06 04:37:42

你所描述的是一个批次。它们比运行两个 ado.net 命令各一条语句要快。使用存储过程可能会更快,因为它在 ADO.NET 中有更好的支持。 (ADO.NET 将批处理视为一堆 SQL,没有特殊功能。)某些数据源(如 MS-Access)不理解批处理或存储过程。

What you are describing is a batch. They are faster than running two ado.net commands with one statement each. It would probably be even faster to use a stored procedure, which has better support in ADO.NET. (ADO.NET treats a batch as just a bunch of SQL-- no special features.) Some datasources (like MS-Access) don't understand batches or stored procedures for that matter.

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