在调用“Fill”前,SelectCommand 属性尚未初始化。(在线等哈)
SqlConnectioncon=newSqlConnection("DataSource=.;InitialCatalog=shop;IntegratedSecurit...
SqlConnection con = new SqlConnection("Data Source=.;Initial Catalog=shop;Integrated Security=sspi");
con.Open();
SqlCommand cmd = new SqlCommand("select GoodID,GoodName,GoodPrice,GoodIntruction from Good where GoodID='" + Session["ID"] + "' ", con);
SqlDataReader dr = cmd.ExecuteReader();
dr.Read();
string s1 = dr[0].ToString();
string s2 = dr[1].ToString();
string s3 = dr[2].ToString();
string s4 = dr[3].ToString();
dr.Close();
SqlCommand cmd1 = new SqlCommand("insert into shopview(GoodID,GoodName,GoodPrice,GoodInstruction) values(@GoodID,@GoodName,@GoodPrice,@GoodIntruction) shopview", con);
SqlDataAdapter da = new SqlDataAdapter();
da.InsertCommand = cmd1;
da.InsertCommand.Parameters.Add("@GoodID", SqlDbType.Char, 50, "GoodID");
da.InsertCommand.Parameters.Add("@GoodName", SqlDbType.Char, 50, "GoodName");
da.InsertCommand.Parameters.Add("@GoodPrice", SqlDbType.Char, 50, "GoodPrice");
da.InsertCommand.Parameters.Add("@GoodIntruction", SqlDbType.Char, 50, "GoodInstruction");
da.InsertCommand.CommandType =CommandType.Text;
DataSet ds = new DataSet();
da.Fill(ds, "view");
DataRow dd = ds.Tables["view"].NewRow();
dd["GoodID"] = s1;
dd["GoodName"] =s2;
dd["GoodPrice"] = s3;
dd["GoodInstruction"] =s4;
dr.Close();
ds.Tables["view"].Rows.Add(dd);
da.Update(ds,"view");
GridView1.DataSource = ds;
GridView1.DataBind(); 展开
con.Open();
SqlCommand cmd = new SqlCommand("select GoodID,GoodName,GoodPrice,GoodIntruction from Good where GoodID='" + Session["ID"] + "' ", con);
SqlDataReader dr = cmd.ExecuteReader();
dr.Read();
string s1 = dr[0].ToString();
string s2 = dr[1].ToString();
string s3 = dr[2].ToString();
string s4 = dr[3].ToString();
dr.Close();
SqlCommand cmd1 = new SqlCommand("insert into shopview(GoodID,GoodName,GoodPrice,GoodInstruction) values(@GoodID,@GoodName,@GoodPrice,@GoodIntruction) shopview", con);
SqlDataAdapter da = new SqlDataAdapter();
da.InsertCommand = cmd1;
da.InsertCommand.Parameters.Add("@GoodID", SqlDbType.Char, 50, "GoodID");
da.InsertCommand.Parameters.Add("@GoodName", SqlDbType.Char, 50, "GoodName");
da.InsertCommand.Parameters.Add("@GoodPrice", SqlDbType.Char, 50, "GoodPrice");
da.InsertCommand.Parameters.Add("@GoodIntruction", SqlDbType.Char, 50, "GoodInstruction");
da.InsertCommand.CommandType =CommandType.Text;
DataSet ds = new DataSet();
da.Fill(ds, "view");
DataRow dd = ds.Tables["view"].NewRow();
dd["GoodID"] = s1;
dd["GoodName"] =s2;
dd["GoodPrice"] = s3;
dd["GoodInstruction"] =s4;
dr.Close();
ds.Tables["view"].Rows.Add(dd);
da.Update(ds,"view");
GridView1.DataSource = ds;
GridView1.DataBind(); 展开
3个回答
展开全部
你都没有用到selectCommand啊 ,只是用了.InsertCommand ,当然没有初始化
而且正如楼上说的,InsertCommand 返回的结果(影响的行)能写到DataSet中得吗
如果你是查询 用selectCommand就可以用Fill了
而且正如楼上说的,InsertCommand 返回的结果(影响的行)能写到DataSet中得吗
如果你是查询 用selectCommand就可以用Fill了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你的SqlDataAdapter “da”变量没有设定对应的SELECT COMMAND对象,当然不能填充数据了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
insert语句是插入数据库不是从数据库中选择数据,怎么可能fill进ds中呢
追问
如想插入数据而且显示出来怎么改
追答
q我:1 0 9 6 4 7 0 2 2 3
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询