我在创建命令时使用它:
command.CommandType = CommandType.StoredProcedure;
command.StatementCompleted += new StatementCompletedEventHandler(statementCompleted);
但是对于同一个命令,我的方法“statementCompleted”不止一次被调用。
有人有想法......
由于
答案 0 :(得分:1)
如果您尝试运行的sql包含多个sql命令(例如多个插入或更新条目),则StatementCompleted事件可能会多次触发。