SqlCommandBuilder

SqlCommandBuilder【SqlCommandBuilder】adapter.SelectCommand = new SqlCommand("select * from "+strTblName),(SqlConnection) conn); //cmd,SqlCommandBuilder myCommandBuilder = new ,SqlCommandBuilder(myAdapter); //new 一个 SqlCommandBuilder.
基本介绍中文名:SqlCommandBuilde
作用:c#中用来批量更新资料库
用法:一般和adapter结合使用 。
错误:忘了使用SqlCommandBuilder
简介作用:c#中用来批量更新资料库用法:一般和adapter结合使用 。例:SqlConnection conn = new SqlConnection(strConnection));//连线资料库DataSet ds=new DataSet();SqlDataAdapter myAdapter = new SqlDataAdapter();//new一个adapter对象myAdapter.Fill(ds);SqlCommandBuilder myCommandBuilder = new SqlCommandBuilder();//new一个Bulider对象myAdapter.InsertCommand = myCommandBuilder .GetInsertCommand();//插入myAdapter.UpdateCommand = myCommandBuilder .GetUpdateCommand();//更新myAdapter.DeleteCommand = myCommandBuilder .GetDeleteCommand();//删除conn.Open();//打开资料库myAdapter.Update(ds); //更新ds到资料库conn.Close();//关闭资料库何时使用:a. 有时候需要快取的时候,比如说在一个商品选择界面,选择好商品,并且进行编辑/删除/更新后,最后一併交给资料库,而不是每一步操作都访问资料库,因为客户选择商品可能进行n次编辑/删除更新操作,如果每次都提交,不但容易引起资料库冲突,引发错误,而且当数据量很大时在用户执行效率上也变得有些慢b.有的界面是这样的,需求要求一定用快取实现,确认之前的操作不提交到库,点击页面专门提交的按钮时才提交商品选择信息和商品的其它信息. 我经常遇到这样的情况c.有些情况下只往资料库里更新,不读取. 也就是说没有从资料库里读,SqlDataAdapter也就不知道是更新哪张表了,调用Update就很可能出错了 。这样的情况下可以用SqlCommandBuilder 了(此段参考了他人所作)d.在使用adapter的时候如果不是用设计器的时候,并且要用到adapter.Update()函式的时候,这时候要注意SqlCommandBuilder必须要有常见错误:一些初学者经常会在使用adapter的时候忘了使用SqlCommandBuilder,即使用了也会忘了用myAdapter.UpdateCommand = myCommandBuilder .GetUpdateCommand();//更新,还自以为是很对,感觉烦躁不可救药 。摘自msdnThe following example uses the derived class, OleDbDataAdapter, to update the data source.C#public DataSet CreateCmdsAndUpdate(string connectionString, string queryString){using (OleDbConnection connection = new OleDbConnection(connectionString)){OleDbDataAdapter adapter = new OleDbDataAdapter();adapter.SelectCommand = new OleDbCommand(queryString, connection);OleDbCommandBuilder builder = new OleDbCommandBuilder(adapter);connection.Open();DataSet customers = new DataSet();adapter.Fill(customers);//code to modify data in dataset hereadapter.Update(customers);return customers;}}