Databases Fundamentals: Data Columns |
|
We have defined a column as a technique categorizing some values that belong to a table. Based on this, one category from a list of a video application can be made of video titles. Another category can contain the years the videos were released. Yet another category can contain a number used to identify the format of the video. Here is an example:
The string on top of each column allows the user to identify what that column is used for. That string is called the column header. The columns of a table are stored in a property called Columns of the DataTable class. The Columns property is an object of type DataColumnCollection. The DataColumnCollection class provides everything that is necessary to create and manage any column. The DataColumnCollection class is in fact a collection of objects.
A column of a table is an object of type DataColumn. Therefore, to create a column, you can first declare a DataColumn variable. The DataColumn class is equipped with five constructors. The default constructor allows you to create a column without providing more details. Here is an example: private void Form1_Load(object sender, System.EventArgs e) { DataColumn colCategoryID = new DataColumn(); } If you are planning to reference a column from more than one method or event, you should declare it globally, in the class of the form. Here is an example: using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace WindowsApplication30 { /// <summary> /// Summary description for Form1. /// </summary> public class Form1 : System.Windows.Forms.Form { private System.Windows.Forms.Button btnCreate; /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.Container components = null; private DataColumn colCategoryID; . . . No Change [STAThread] static void Main() { Application.Run(new Form1()); } private void btnCreate_Click(object sender, System.EventArgs e) { colCategoryID = new DataColumn(); } } } To distinguish them, each column must have a specific and unique name. The name of a column allows you and the compiler to identify a particular column. To specify the object name of a column, when creating it, you can use the second constructor whose syntax is: public DataColumn(string name); This constructor expects as argument the name of the column. Here is an example: private void btnCreate_Click(object sender, System.EventArgs e) { colCategoryID = new DataColumn("CategoryID"); } If you have already declared a DataColumn object, to specify or change its name, assign the desired string to the DataColumn.ColumnName property. Based on these descriptions, the minimum information needed to create a column is a name. If you don't specify a name, a default name is assigned to the new column.
To make a column part of a table, you must add it to the table's collection of columns. As mentioned earlier, the columns of a table are grouped into the DataTable.Columns property, which is based on the DataColumnCollection class. This class is equipped with an Add() method that allows you to add a column to the table. The DataColumnCollection.Add() method is overloaded with 3 versions. The first version uses the following syntax: public virtual DataColumn Add(); When called, this would create a new column and return it. The compiler would assign a default name to the column. If this is the first column, it would be named Column1. If it is the second column, it would be named Column2, and so on. You can still specify or change the name of a column created with the above version. To do this, assign the desired string to the DataColumn.ColumnName. Here is an example: using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace WindowsApplication30 { /// <summary> /// Summary description for Form1. /// </summary> public class Form1 : System.Windows.Forms.Form { private System.Windows.Forms.Button btnCreate; /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.Container components = null; private DataSet dsVideoCollection; private DataTable dtDirectors; private DataTable dtVideoCategories; private DataTable dtRatings; private DataTable dtActors; private DataTable dtFormats; private DataColumn colCategoryID; private DataColumn colDirector; . . . No Change private void btnCreate_Click(object sender, System.EventArgs e) { dsVideoCollection = new DataSet("Videos"); dtVideoCategories = new DataTable("Categories"); dsVideoCollection.Tables.Add(dtVideoCategories); dtDirectors = new DataTable(); dtDirectors.TableName = "Directors"; dsVideoCollection.Tables.Add(dtDirectors); colDirector = dtDirectors.Columns.Add(); colDirector.ColumnName = "Director"; dtRatings = dsVideoCollection.Tables.Add(); dtActors = dsVideoCollection.Tables.Add("Actors"); dtFormats = dsVideoCollection.Tables.Add("Formats"); colCategoryID = new DataColumn("CategoryID"); } } } If you want to specify the name of the new column when calling the DataColumnCollection.Add() method, you can use the following version: public virtual DataColumn Add(string name); This method takes as argument the name of the new column and returns that new column. Here is an example: using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace WindowsApplication30 { /// <summary> /// Summary description for Form1. /// </summary> public class Form1 : System.Windows.Forms.Form { private System.Windows.Forms.Button btnCreate; /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.Container components = null; private DataSet dsVideoCollection; private DataTable dtDirectors; private DataColumn colDirectorID; . . . No Change /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { Application.Run(new Form1()); } private void btnCreate_Click(object sender, System.EventArgs e) { dsVideoCollection = new DataSet("Videos"); dtDirectors = new DataTable(); dtDirectors.TableName = "Directors"; dsVideoCollection.Tables.Add(dtDirectors); colDirectorID = dtDirectors.Columns.Add("DirectorID"); } } } If you have already formally created a DataColumn object, to add it to the collection of columns of a table, you can call the following version of the DataColumnCollection.Add() method: public virtual void Add(DataColumn name); This method expects a DataColumn object as argument. You can either primarily create a DataColumn value or you can define one in the parentheses of the method. Here are two examples: using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace WindowsApplication30 { /// <summary> /// Summary description for Form1. /// </summary> public class Form1 : System.Windows.Forms.Form { private System.Windows.Forms.Button btnCreate; /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.Container components = null; private DataSet dsVideoCollection; private DataTable dtVideos; private DataColumn colVideo; . . . No Change private void btnCreate_Click(object sender, System.EventArgs e) { dsVideoCollection = new DataSet("Video"); dtVideos = new DataTable("ListOfVideo"); colVideo = new DataColumn("Title"); dtVideos.Columns.Add(colVideo); dtVideos.Columns.Add(new DataColumn("Director")); dsVideoCollection.Tables.Add(dtVideos); } } } Instead of adding one column (at a time) to a table, you can first create an array of columns and add that array to the collection of columns. To do this, you can call the DataColumnCollection.AddRange() method. Its syntax is: public void AddRange(DataColumn[] columns); This method takes as argument an array of predefined columns. Here is an example: using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace WindowsApplication30 { /// <summary> /// Summary description for Form1. /// </summary> public class Form1 : System.Windows.Forms.Form { private System.Windows.Forms.Button btnCreate; /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.Container components = null; private DataSet dsVideoCollection; private DataTable dtVideos; private DataColumn colVideo; DataColumn[] colVideos = new DataColumn[7]; . . . No Change private void btnCreate_Click(object sender, System.EventArgs e) { dsVideoCollection = new DataSet("Video"); dtVideos = new DataTable("ListOfVideo"); colVideos[0] = new DataColumn("Title"); colVideos[1] = new DataColumn("Director"); colVideos[2] = new DataColumn("YearReleased"); colVideos[3] = new DataColumn("Length"); colVideos[4] = new DataColumn("Rating"); colVideos[5] = new DataColumn("Format"); colVideos[6] = new DataColumn("Category"); dtVideos.Columns.AddRange(colVideos); dsVideoCollection.Tables.Add(dtVideos); } } }
If you create an object, such as a form, that allows the user to enter records for the above list of videos, you can reduce the likelihood of mistakes. For example, you can prevent the table from allowing the user to enter a director name in a box reserved for the year released. To exercise this type of control, the DataColumn class allows you to specify an appropriate or desired data type for each column. Just as done in C# regular applications, the data types of a table allow its columns to accept or reject inappropriate values. Although we saw that the name was the most important aspect of a column, in reality, a data type is also required. Fortunately, if you don't specify the data type of a column, it is assumed to be a string and the string data type is automatically assigned to it. To specify the data type of a column, you have two main alternatives. When declaring a column, to specify its data type, you can initialize the DataColumn variable using the third constructor. Its syntax is: public DataColumn(string name, Type dataType); To specify a column's data type, select one from the Type class of the System namespace by calling the Type.GetType() method. The GetType() method is overloaded with three versions. The first version has the following syntax: public static Type GetType(string typeName); This method expects as argument a valid data type defined in the .NET Framework. The data type must be retrieved from the Type class of the System namespace. The name of the data type must be qualified with a period operator. Here is an example: private void btnCreate_Click(object sender, System.EventArgs e) { DataColumn colCategory = new DataColumn("Category", System.Type.GetType("System.String")); } If you used the default constructor to declare a DataColumn, to specify its data type, assign its qualified type to the DataColumn.DataType property. Here is an example: private void btnCreate_Click(object sender, System.EventArgs e) { colDirector.DataType = System.Type.GetType("System.String"); } Remember that there are various techniques you can use to create a column by specifying its name and its data type. Here are various examples from what we have used so far: using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace WindowsApplication30 { /// <summary> /// Summary description for Form1. /// </summary> public class Form1 : System.Windows.Forms.Form { private System.Windows.Forms.Button btnCreate; /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.Container components = null; private DataSet dsVideoCollection; private DataTable dtVideoCategories; private DataColumn colCategory; private DataTable dtDirectors; private DataColumn colDirector; private DataTable dtActors; private DataColumn colActor; private DataTable dtVideos; private DataColumn[] colVideos = new DataColumn[7]; . . . No Change private void btnCreate_Click(object sender, System.EventArgs e) { dsVideoCollection = new DataSet("Video"); dtVideoCategories = new DataTable("Categorie"); colCategory = new DataColumn("Category", System.Type.GetType("System.String")); dsVideoCollection.Tables.Add(dtVideoCategories); dtDirectors = new DataTable(); dtDirectors.TableName = "Director"; colDirector = new DataColumn(); colDirector.ColumnName = "Director"; colDirector.DataType = System.Type.GetType("System.String"); colDirector = dtDirectors.Columns.Add("Director"); dsVideoCollection.Tables.Add(dtDirectors); dtActors = dsVideoCollection.Tables.Add("Actor"); colActor = new DataColumn("Actor", System.Type.GetType("System.String")); dtActors.Columns.Add(colActor); dtVideos = new DataTable("ListOfVideo"); colVideos[0] = new DataColumn(); colVideos[0].ColumnName = "Title"; colVideos[0].DataType = System.Type.GetType("System.String"); colVideos[1] = new DataColumn("Director"); colVideos[1].DataType = System.Type.GetType("System.String"); colVideos[2] = new DataColumn("YearReleased", System.Type.GetType("System.Int16")); colVideos[3] = new DataColumn("Length", System.Type.GetType("System.String")); colVideos[4] = new DataColumn("Rating", System.Type.GetType("System.String")); colVideos[5] = new DataColumn("Format", System.Type.GetType("System.String")); colVideos[6] = new DataColumn("Category", System.Type.GetType("System.String")); dtVideos.Columns.AddRange(colVideos); dsVideoCollection.Tables.Add(dtVideos); } } }
|
|
||
Previous | Copyright © 2004-2010 FunctionX, Inc. | Next |
|