The following question was closed as "not a real question"
C# - Using DataAdapter to Update SQL table from a DataTable -> SQL table not updating
While I think the question was a bit vague I belive that I understand what he is asking, and I am a curious why instead of everyone making statements directed at the individual, why more care was not taken in discovering more details about the problem. As a result there were a number of factual mis-statements made in the "attempted" answers along with what I percieve as ridicule.
I find this to be an important question, one that I would like to clarify and address.
The question as I believe I understand it: is that there is a sql server table that was addtionally populated by an Excel spreadsheet. This spreadhseet still exists "mirrors" that table. Users are able to update that spreadsheet which will later be used to update (sync with) the sql server table.
The user wants to create a datatable from the spreadsheet and then use the Update method of the dataadapter to push those updates into the sql server table. A very do-able task. Moving data between data sources like this is not uncommon and his approach of using datatables and the update method is a fast clean and effective soltuion that can and does work if implmented correctly.
Here is a short code example where the "Source Block" could eaisly be adapted to create a disconnected datatable from an Excel spreadheeet.
private void dtUpdateExample()
{
// init the vars
SqlConnection source_conn = null;
SqlConnection target_conn = null;
DataTable dt = null;
#region Source Block
try
{
// connection to a the data source "SOURCE"
source_conn = new SqlConnection(DEV_CONNECTION_STRING);
source_conn.Open();
}
catch (SqlException sqlex)
{
//ERROR
MessageBox.Show(sqlex.Message);
}
try
{
using (SqlDataAdapter da = new SqlDataAdapter("SELECT * FROM dcb_Source", source_conn))
{
// fill a data table with the source data
dt = new DataTable();
da.Fill(dt);
}
}
catch (SqlException sqlex)
{
//ERROR
MessageBox.Show(sqlex.Message);
}
catch (Exception ex)
{
//ERROR
MessageBox.Show(ex.Message);
}
finally
{
// disconnect the data table
if (source_conn.State == ConnectionState.Open) source_conn.Close();
source_conn = null;
}
#endregion
# region Target Block
// we now have a disconnected datatable that can be from any datasource (even Excel as in the original question)
// change the rowstate of each datarow in the datatable to "modified"
foreach (DataRow row in dt.Rows)
{
row.SetModified();
}
try
{
// the connection to the data source "TARGET"
// can be any data source so long as we have similar schemas (pk and columns really)
target_conn = new SqlConnection(DEV_CONNECTION_STRING);
target_conn.Open();
}
catch (SqlException sqlex)
{
//ERROR
MessageBox.Show(sqlex.Message);
}
try
{
// get the target
// need to read the target so we can get the schema and be able to create the update command
SqlCommand cmd = new SqlCommand("SELECT * FROM dcb_target", target_conn);
using (SqlDataAdapter da = new SqlDataAdapter(cmd))
{
// map the original source table to the target table by name
da.TableMappings.Add("dcb_target", "dcb_source");
// cause the insert, update and delete commands to be created
SqlCommandBuilder b = new SqlCommandBuilder(da);
// this is critical since you want all the columns to be updated (since it is a sync)
b.SetAllValues = true;
// force the overwrite
b.ConflictOption = ConflictOption.OverwriteChanges;
// execute the update
da.Update(dt);
}
}
catch (SqlException sqlex)
{
//ERROR
MessageBox.Show(sqlex.Message);
}
catch (Exception ex)
{
//ERROR
MessageBox.Show(ex.Message);
}
finally
{
// close the connection and clean up
if (target_conn.State == ConnectionState.Open) target_conn.Close();
target_conn = null;
}
dt = null;
#endregion
}