Код: Выделить всё
public void SaveDataBaseTailleALL(DataGridView dataGridViewRALSelectedTaille, DataSet oDSALL)
{
PointageCls.totalPointage(dataGridViewRALSelectedTaille);
SqlConnection cn = new SqlConnection();
cn.ConnectionString = "Data Source=HOOSSEN-HP\\INFO2;Initial Catalog=SuiviOF;User ID=sa;Password= PROTECTED;"
//string strSQL = ")";
SqlDataAdapter adapt = new SqlDataAdapter("select * from tblTailleALL)", cn);
SqlCommandBuilder builder = new SqlCommandBuilder(adapt);
adapt.update(oDSALL.Tables[0]);
oDSALL.Tables[0].AcceptChanges();
}
спасибо
Подробнее здесь: https://stackoverflow.com/questions/200 ... -sql-table