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

    }
share|improve this question
2  
What is your question here for us, exactly? – Bill the Lizard Jan 15 at 2:50
Why was this closed when to me it seems a valid question? Why so quick to judge and not explore options or try to get at the questions (as you did here)? Is there a way to reopen with the example I included? – Don Jan 15 at 18:16
If we have to guess what your question is, then some of us are going to guess wrong. Closing quickly prevents people from wasting time by answering with bad assumptions. If you have a clear question to ask, go ahead and post it as a new question. – Bill the Lizard Jan 15 at 18:22
"If we have to guess what your question is, then some of us are going to guess wrong" Which I suppose is my whole issue. Why guess and not firstly ask for some clarity of the issue, I see that a lot on here. Way too many "answers" that begin with "I am not sure what you are asking or what you are trying to do, but..." instead of asking for more information or some points that need to be clarified just as we (IT) would with any stakeholder. – Don Jan 15 at 22:16
PS: is there any way to re-open the original question as I have said I understand the issue and think that others would benefit from the solution. Thanks – Don Jan 15 at 22:17
Four different people left comments on that question. It wasn't closed out of a lack of trying. If you still have a question that isn't answered by that one, instead of guessing what the OP was trying to ask, please post your own question. – Bill the Lizard Jan 15 at 22:19
I just asked a very straight forward question which you did not answer but instead chose to circumvent, so I guess I will repeat it for clarity.... Is there any way to re-open the original question since I understand the question and have a solution that I believe others would benefit from? – Don Jan 16 at 11:11
No. Ask a new question. – Bill the Lizard Jan 16 at 11:56

closed as too localized by waiwai933, Bill the Lizard Jan 15 at 2:51

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

You must log in to answer this question.

Browse other questions tagged