可能出现什么问题?
public int InsertUpdateQues(bllQues objbllQues)
{
dsgetQues = objdllQues.InsertUpdateQues(this); //ERROR here
return dsgetQues;
}
我看到值被分配给所有上述属性,而不是缺少一个。那有什么不对吗?
修改 我发现错误..在我的dllQue类的插入更新方法中,我有两个条目,如sqlParam [4] = new ...和sqlParam [4] = new ... chnaged第二个1到5 .. 该死的问题是我继续犯下愚蠢的错误! :(我怎么能避免这种情况,所以我的时间不会浪费这种方式???
答案 0 :(得分:1)
为索引使用常量可能会有所帮助,因此您的代码看起来像sqlParam [CustomerName] = ... 这有助于提高可读性,你可以更快地发现错误。