性能差异 - 多个查询放在一个 sql 命令对象中,每个查询一个 sql 命令对象
当多个查询放在一个字符串对象中并传递给 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你所描述的是一个批次。它们比运行两个 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.