Click here to Skip to main content
15,880,503 members
Articles / Web Development / ASP.NET

ASP.NET Optimistic Concurrency Control

Rate me:
Please Sign up or sign in to vote.
4.73/5 (25 votes)
19 Aug 20039 min read 222.8K   2.3K   111  
How to implement the optimistic concurrency control without the DataSet
using System;
using System.Collections;
using System.Data;
using System.Data.SqlClient;
using Microsoft.ApplicationBlocks.Data;

namespace Concurrency.BLL
{
	/// <summary>
	/// Represents a supplier
	/// </summary>
	public class Supplier
	{

		#region Constructors

		/// <summary>
		/// Initializes a new instance of the supplier class
		/// </summary>
		public Supplier()
		{
		}

		/// <summary>
		/// Initializes a new instance of the supplier class
		/// </summary>
		/// <param name="id">Supplier id</param>
		/// <param name="name">Supplier name></param>
		public Supplier(int id, string name)
		{
			_id = id;
			_name = name;
		}

		#endregion

		#region Methods

		/// <summary>
		/// Gets the suppliers
		/// </summary>
		/// <returns>Suppliers list</returns>
		public IList GetSuppliers()
		{
			IList suppliers = new ArrayList();

			// Get the data reader
			using (SqlDataReader dr = SqlHelper.ExecuteReader(Util.ConnectionString, CommandType.StoredProcedure , "SuppliersList"))
			{
				while (dr.Read())
				{
					// Get data for the product
					Supplier supplier = new Supplier(	dr.GetInt32(0), dr.GetString(1));
				
					// Add the category to the collection
					suppliers.Add(supplier);
				}
			}
			return suppliers;
		}

		#endregion

		#region Properties

		private int _id;
		private string _name;

		public int ID
		{
			get { return _id; }
			set { _id = value; }
		}

		public string Name
		{
			get { return _name; }
			set { _name = value; }
		}

		#endregion

	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Teo
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions