今天下午调试Web程序,出现“未将对象引用设置到对象的实例”,看了看网上也没有特别实用的解决方法,最后发现有为仁兄竟然总结了十来种故障原因。晚上在家做App程序,竟然又是“未将对象引用设置到对象的实例”的错误,联想到以前也遇到过几次,那也学学这位仁兄做一个小结,省得以后再走弯路。废话少说。
(一)代码:
SqlDataAdapter da = new SqlDataAdapter();
da.SelectCommand.CommandText = strSqlCmd; //执行到此出现错误
da.Fill(ds);
解决方法:
SqlDataAdapter da = new SqlDataAdapter();
SqlCommand cmd = new SqlCommand();
cmd.Connection = sqlCon;
cmd.CommandType = CommandType.Text;
cmd.Connection = sqlCon;
cmd.CommandType = CommandType.Text;
da.SelectCommand = cmd;
cmd.CommandText = strSqlCmd;
da.Fill(ds);