Command.StatementCompleted 被多次调用
我在创建命令时使用它:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您尝试运行的 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.