【06年博文搬家】“未将对象引用设置到对象的实例”问题小结
今天下午调试Web程序,出现“未将对象引用设置到对象的实例”,看了看网上也没有特别实用的解决方法,最后发现有为仁兄竟然总结了十来种故障原因。晚上在家做App程序,竟然又是“未将对象引用设置到对象的实例”的错误,联想到以前也遇到过几次,那也学学这位仁兄做一个小结,省得以后再走弯路。废话少说。
(一)代码:
SqlDataAdapter da = new SqlDataAdapter();
da.SelectCommand.CommandText = strSqlCmd; //执行到此出现错误
da.Fill(ds);
da.SelectCommand.CommandText = strSqlCmd; //执行到此出现错误
da.Fill(ds);
解决方法:
SqlDataAdapter da = new SqlDataAdapter();
SqlCommand cmd = new SqlCommand();
cmd.Connection = sqlCon;
cmd.CommandType = CommandType.Text;
da.SelectCommand = cmd;
cmd.CommandText = strSqlCmd;
da.Fill(ds);
SqlCommand cmd = new SqlCommand();
cmd.Connection = sqlCon;
cmd.CommandType = CommandType.Text;
da.SelectCommand = cmd;
cmd.CommandText = strSqlCmd;
da.Fill(ds);
作者:行一山人
出处:http://www.cnblogs.com/benbenkoala/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。