摘要: 一般情况下,我们定义的一个SqlParameter参数数组,如: SqlParameter[] parms = { new SqlParameter("@DateTime1", dtBegin), new SqlParameter("@DateTime2", dtEnd) };如果只给一个SqlCommand使用,这种情况的参数使用,不会出现异常,但如果该参数数组同时给两个Sqlcommand使用,就会出现如下异常: System.ArgumentException: 另一个SqlParameterCollection中已包含SqlParameter。 阅读全文
posted @ 2012-11-17 07:53 AllanChen 阅读(413) 评论(0) 推荐(0) 编辑