ASP.NET GridView Tutorial - Using optimistic concurrency when editing data in gridview – Part 19

Database, Information Technology

ASP.NET GridView Tutorial

301 Lessons

Using optimistic concurrency when editing data in gridview – Part 19

Link for csharp, asp.net, ado.net, dotnet basics and sql server video tutorial playlists
http://www.youtube.com/user/kudvenkat/playlists

Link for text version of this video
http://csharp-video-tutorials.blogspot.com/2013/03/using-optimistic-concurrency-when.html

In Part 18 of the asp.net gridview tutorial we discussed the basics of editing and updating data in gridview control. We did not discuss about concurrency in Part 18. Let me explain what I mean.
1. When you access the webform, data is loaded into gridview control.
2. Now click on Edit, while you are still editing data, someone else has updated the same row in the underlying database table
3. Now, in the gridview, when you click UPDATE button on the row that has changed, the row gets overwritten with your new data. This may or may not be a problem, depending on the requirements of your application. But if your project requirement warrants that, the data should not be overwritten, if it has changed since it was loaded into gridview control, then we need to think about implementing optimistic concurrency.

We will be modifying the “UpdateEmployee()” method in EmployeeDataAccessLayer.cs file. We discussed about this in Part 18. Please change the implementation of UpdateEmployee() method as shown below. Notice that, along with the new values, the ORIGINAL EmployeeId, Name, Gender and City are also passed as parameters to the UpdateEmployee() method. These parameters are then used in the “UPDATE” query, to check if the data has changed after it was loaded into the gridview control.
public static int UpdateEmployee(int original_EmployeeId, string original_Name, string original_Gender, string original_City,
string Name, string Gender, string City)
{
string CS = ConfigurationManager.ConnectionStrings[“DBCS”].ConnectionString;
using (SqlConnection con = new SqlConnection(CS))
{
string updateQuery = “Update tblEmployee SET Name = @Name, ” +
“Gender = @Gender, City = @City WHERE EmployeeId = @original_EmployeeId ” +
“AND Name = @original_Name AND Gender = @original_Gender AND City = @original_City”;
SqlCommand cmd = new SqlCommand(updateQuery, con);
SqlParameter paramOriginalEmployeeId = new SqlParameter(“@original_EmployeeId”, original_EmployeeId);
cmd.Parameters.Add(paramOriginalEmployeeId);
SqlParameter paramOriginalName = new SqlParameter(“@original_Name”, original_Name);
cmd.Parameters.Add(paramOriginalName);
SqlParameter paramOriginalGender = new SqlParameter(“@original_Gender”, original_Gender);
cmd.Parameters.Add(paramOriginalGender);
SqlParameter paramOriginalCity = new SqlParameter(“@original_City”, original_City);
cmd.Parameters.Add(paramOriginalCity);
SqlParameter paramName = new SqlParameter(“@Name”, Name);
cmd.Parameters.Add(paramName);
SqlParameter paramGender = new SqlParameter(“@Gender”, Gender);
cmd.Parameters.Add(paramGender);
SqlParameter paramCity = new SqlParameter(“@City”, City);
cmd.Parameters.Add(paramCity);
con.Open();
return cmd.ExecuteNonQuery();
}
}

Compile the project and re-configure ObjectDataSource1 control, to use the above method as it’s UPDATE method.

On “ObjectDataSource1″ control, set properties
ConflictDetection=”CompareAllValues”
OldValuesParameterFormatString=”original_{0}”

Setting ConflictDetection=”CompareAllValues”, will pass original values for EmployeeId, Name, Gender and City to UpdateEmployee() method.

Notice the parameters of the UpdateEmployee() method. Some of them have a prefix of “original_”. ObjectDataSource control uses “OldValuesParameterFormatString” property to figure out the exact name of the parameters for the original values. This is the reason we have set OldValuesParameterFormatString=”original_{0}”
public static int UpdateEmployee(int original_EmployeeId, string original_Name,
string original_Gender, string original_City, string Name, string Gender, string City)

To make EmployeeId Non-Editable, set ReadOnly=”true”, on EmployeeId bound column

Finally, on “GridView1″ set DataKeyNames=”EmployeeId”

    Access DataSource in asp.net AccessDataSource in asp.net Alert another gridview ascending asp net gridview access database asp.net asp.net c# bind xml to gridview asp.net data source controls asp.net datagridview asp.net datasource controls asp.net get data from access database asp.net gridview asp.net gridview bind to xml asp.net gridview edit asp.net gridview formatting asp.net gridview sqldatasource asp.net gridview xml c# asp.net gridview xml file asp.net ms access database example asp.net objectdatasource explained between bi-directional bidirectional bind xml file to gridview in asp.net binding xml file to gridview business objects C# c# accessdatasource c# data source object c# datagrid example c# get data from access database c# gridview sqldatasource c# sql data source connection string c# sqldatasource example c# sqldatasource selectcommand c# xslt example c# xslt transform xml document c# xslt tutorial c#.net cells changing data checkbox client-side code colspan CompareAllValues compute concurrency confirm ConflictDetection conflictdetection property content control controls convert xml node to attribute custom paging Data DataFormat String DataFormatString datagrid in asp.net datagrid in c# DataKeyNames dataset datasource datasource controls default paging delete delete confirmation delete data Deleting deleting data descending detailed data details view details view in asp.net DetailsView difference display Displaying displaying gridview document Drill Down Drilldown drilling down dropdownlist edit edit and update editing EmptyDataTemplate EmptyDataText event example Excel Export exporting footer footer row format formatting gridview at runtime Formatting gridview in code generate Grid View gridview gridview currency format gridview datasource xml file gridview date format gridview ms access database gridview retrieve templatefield value gridview RowDataBound gridview template gridview templatefield gridview templatefield get control GridViewDeletedEventArgs hierarchical data how how to display date in gridview without time How to get value from TemplateField in GridView how to pass data from gridview to another page in asp.net image field imagefield images implement implementing insert inside javascript jquery KeepInEditMode Merging. merge microsoft multiple rows nested nested gridview nesting no data no rows in datasource object datasource object datasource in asp.net objectdatasource objectdatasource in asp.net order OverwriteChanges page page numbers page size paging pdf properties read xml file with child nodes c# Repeater Retrieve ItemTemplate control value in Gridview row cells rowcommand rowdatabound rowdatabound event RowDataBound example RowDeleted event RowUpdated several rows show date only in gridview showing sort sort arrows sort images sortable Sorting sqldatasource sqldatasource in asp.net stored procedures summary data templatefield totals tutorial two or more rows Update update data Updated updating updating data Use use optimistic concurrency using validation Validation Controls web server when without without data source controls without datasource controls Word workbook working with xmldatasource in asp.net xslt basics xslt example xslt to transform xml to xml xslt transformation xslt transformation c# example