Command.StatementCompleted 被多次调用

发布于 2024-12-14 08:29:35 字数 258 浏览 2 评论 0原文

我在创建命令时使用它:

command.CommandType = CommandType.StoredProcedure;
command.StatementCompleted += new StatementCompletedEventHandler(statementCompleted);

但是对于同一个命令,我的方法“statementCompleted”被多次调用。

有人有想法...

谢谢

I'm using this when I create a command :

command.CommandType = CommandType.StoredProcedure;
command.StatementCompleted += new StatementCompletedEventHandler(statementCompleted);

But my method "statementCompleted" is called more than once for a same command.

Someone have an idea...

Thanks

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

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

发布评论

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

评论(1

不交电费瞎发啥光 2024-12-21 08:29:35

如果您尝试运行的 sql 包含超过 1 个 sql 命令(例如多个插入或更新条目),则 StatementCompleted 事件可能会多次触发。

The StatementCompleted event can fire multiple times if the sql you are attempting to run contains more than 1 sql command, such as multiple insert or update entries.

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