Click here to Skip to main content
15,894,460 members
Articles / Programming Languages / C#

Databinding the SqlTypes

Rate me:
Please Sign up or sign in to vote.
4.70/5 (21 votes)
1 May 20032 min read 223.3K   3.7K   75  
Databinding the SqlTypes using the PropertyDescriptor class and the ITypedList Interface
using System;
using System.Data;
using System.Data.SqlTypes;

namespace ITypedListExample
{
	/// <summary>
	/// Summary description for MyData.
	/// </summary>
	public class MyData
	{
		DataRow dataRow;
		private MyCollection myChildren = null;

		public MyData(DataRow dr)
		{
			this.dataRow = dr;
		}
		
		public SqlInt32 ID
		{
			get 
			{
				if (this.dataRow.IsNull("ID"))
					return SqlInt32.Null;
				else
					return new SqlInt32((int)this.dataRow["ID"]);
			}
		}
		
		public SqlDateTime dtStamp
		{
			get
			{
				if (this.dataRow.IsNull("dtStamp"))
					return SqlDateTime.Null;
				else
					return new SqlDateTime((DateTime)this.dataRow["dtStamp"]);
			}
			set
			{
				if ( value.IsNull )
					this.dataRow["dtStamp"] = DBNull.Value; 
				else
					this.dataRow["dtStamp"] = value.Value;
			}
		}
		
		public MyCollection MyChildren
		{
			get{ return myChildren; }
			set{ myChildren = value; }
		}
	}
}

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
Architect support.com
Australia Australia

Comments and Discussions