标题:C# SqlDataAdapter的更新方法问题
只看楼主
wang_steven
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2006-2-23
 问题点数:0 回复次数:1 
C# SqlDataAdapter的更新方法问题

SqlConnection con = new SqlConnection("server=.;database=Northwind;uid=sa;pwd=19820924;");

con.Open();
SqlCommand com = con.CreateCommand();
com.CommandText = "Select * from Student";
//SqlCommand com = new SqlCommand("Select * from Student",con);

// con.Open();
// SqlDataReader dr = com.ExecuteReader();
//
// while(dr.Read())
// Console.WriteLine("\t{0}\t{1}",dr["ID"],dr["Name"]);
//
// dr.Close();
// con.Close();

SqlDataAdapter thisAdapter = new SqlDataAdapter(com.CommandText,con);

SqlCommandBuilder thisBuilder = new SqlCommandBuilder(thisAdapter);

DataSet thisDataSet = new DataSet();

thisAdapter.Fill(thisDataSet,"Student");

Console.WriteLine("name before change is: {0}",thisDataSet.Tables["Student"].Rows[1]["Name"]);

thisDataSet.Tables["Student"].Rows[1]["Name"] = "wang";

thisAdapter.Update(thisDataSet,"Student");

Console.WriteLine("name before change is: {0}",thisDataSet.Tables["Student"].Rows[1]["Name"]);

con.Close();

对于不返回任何键列信息的 SelectCommand 不支持 UpdateCommand 的动态 SQL 生成,提示这样的错误是怎么回事呀?

搜索更多相关主题的帖子: con SqlCommand Student Select 
2006-03-02 01:06
月夜枫华
Rank: 4
等 级:贵宾
威 望:12
帖 子:437
专家分:42
注 册:2006-1-2
得分:0 

可能是没有给thisAdapter指定UpdataCommand


2006-03-02 14:51



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-47905-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.159592 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved