http://community.csdn.net/Expert/topic/3658/3658968.xml?temp=.4762384
private void button2_Click(object sender, System.EventArgs e)
{oleDbConnection1.Open();        //  已设好连接串与SQL语句         
oleDbDataAdapter1.Fill(dataSet1);
DataTable table=dataSet1.Tables[0];
dataGrid1.DataSource=table;
textBox1.DataBindings.Add("Text", table, "单位");  // 字段名
}
是同步移动的