how to retrieve informatin from deleted row

Posted by JM on Stack Overflow See other posts from Stack Overflow or by JM
Published on 2010-04-06T19:28:23Z Indexed on 2010/04/06 19:33 UTC
Read the original article Hit count: 267

Filed under:

How can I retrie infromation from delete rows. I delete some rows from table in dataset, then I use method GetChanges(DataRowState.Deleted) to get deleted rows. I try delete rows in original table on server side, but it finished with this errors.

System.Data.DeletedRowInaccessibleException: Deleted row information cannot be accessed through the row.

What is correct way? Here is my code, any advice? Thank you everybody

    Dataset ds = //get dataset from client side
    //get changes
    DataTable delRows = ds.Tables[0].GetChanges(DataRowState.Deleted);

    //try delete rows in table in DB
                    if (delRows != null)
                    {
                        string connStr = WebConfigurationManager.ConnectionStrings["Employees"].ConnectionString;
                        conn = new SqlConnection(connStr);

                        conn.Open();

                        for (int i = 0; i < delRows.Rows.Count; i++)
                        {
                            string cmdText = string.Format("DELETE Tab1 WHERE Surname=@Surname");

                            cmd = new SqlCommand() { Connection = conn, CommandText = cmdText };

//here is problem, I need get surnames from rows which was deleted
                            var sqlParam = new SqlParameter(@"Surname", SqlDbType.VarChar) { Value = delRows.Rows[i][1].ToString() };
                            cmd.Parameters.Add(sqlParam);


                            cmd.CommandText = cmdText;
                            cmd.Connection = conn;

                            cmd.ExecuteNonQuery();
                        }
                    }

© Stack Overflow or respective owner

Related posts about dataset