文件名称:SqlCommandBuilder用法
文件大小:27KB
文件格式:DOC
更新时间:2014-01-06 11:07:55
SqlCommandBuilder
作用:c#中用来批量更新数据库 用法:一般和adapter结合使用。 例: SqlConnection conn = new SqlConnection(strConnection));//连接数据库 SqlDataAdapter myAdapter = new SqlDataAdapter();//new一个adapter对象 SqlCommand myCommand = new SqlCommand("select * from "+strTblName),(SqlConnection) conn); //cmd SqlCommandBuilder myCommandBuilder = new SqlCommandBuilder(myAdapter); //new 一个 SqlCommandBuilder myAdapter.InsertCommand =