The Columns of a Table |
|
Columns Fundamentals |
Introduction |
We saw that a table was used to organize the values of a list by using categories of information. Here is an example:
With this type of arrangement, each column holds a particular category of information. A table must have at least one column. This means that, to create a table using the CREATE TABLE TableName formula, you must specify a (at least one) column. |
To create the columns of a table, on the right side of the name, type an opening and a closing parentheses. In the parentheses of the CREATE TABLE TableName() expression, the formula of creating a column is: ColumnName DataType Options Notice that there is only space that separates the sections of the formula. This formula is for creating one column. If you want the table to have more than one column, follow this formula as many times as possible but separate the sections with colons. This would be done as follows: CREATE TABLE TableName(Column1 DataType1 Options1, Column2 DataType2 Options2, Column_n DataType_n Options_n) In the next sections, we will review the factors of this formula. To create a table in ADO, you can pass the whole statement to the Execute() method of the Connection class.
Like a table of a database, a column must have a name. As mentioned for a table, the name of a column is very flexible. Because of this, we will adopt the same types of naming conventions we reviewed for tables:
When creating the table, set the name of the column in the ColumnName placeholder of our formula. Here is an example: CREATE TABLE Students(FullName, DataType Options) Notice that the name of the column is not included in quotes.
To exercise a good level of control over the values that can be entered or stored in a database, you can configure each column to allow some types of value and/or to exclude some other types. This is done by specifying an appropriate type of data for the column. To specify the data type of a column, pass the name of the data type as the second factor of the column. Text-Based Columns: If the fields under a column would be used to hold any type of value, including regular text, such a column is treated as string-based. There are various data types you can apply to such a column. You can specify the data type as Char, Text, String or Varchar. Here are examples of three columns created with these types: using System; using ADODB; public class Program { static int Main() { ConnectionClass conDatabase = new ConnectionClass(); try { object objAffected; string strStatement = "CREATE TABLE Customers(FirstName char, " + "MiddleName String, " + "LastName varchar);"; string strConnection = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source='C:\\Programs\\Exercise1.mdb';"; conDatabase.Open(strConnection, "", "", 0); conDatabase.Execute(strStatement, out objAffected, 0); } finally { conDatabase.Close(); } return 0; } } Each one of the char, string, or varchar data types would produce the same effect. A column with the string, the char, or the varchar data type allows any type of value made of any character up to 255 symbols. If you want the column to hold longer text, specify its data type as Memo, NOTE, or LONGTEXT. Such a column can hold any type of text, any combination of characters, and symbols, up to 64000 characters. Here are examples: using System; using ADODB; public class Program { static int Main() { ConnectionClass conDatabase = new ConnectionClass(); try { object objAffected; string strStatement = "CREATE TABLE Employees(FullName String, " + "JobDescription Text, " + "Comments Memo, " + "ShortTimeGoals Note, " + "LongTimeGoals LongText);"; string strConnection = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source='C:\\Programs\\Exercise1.mdb';"; conDatabase.Open(strConnection, "", "", 0); conDatabase.Execute(strStatement, out objAffected, 0); } finally { conDatabase.Close(); } return 0; } } Boolean Columns: If you want to create a column to hold only values as being true or being false, specify its data type as YESNO, BIT, or LOGICAL. Here are examples: using System; using ADODB; public class Program { static int Main() { ConnectionClass conDatabase = new ConnectionClass(); try { object objAffected; string strStatement = "CREATE TABLE Contractors(" + "FullName String, " + "IsFullTime BIT, " + "CanTeachVariousSubjects LOGICAL, " + "IsMarried YESNO);"; string strConnection = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source='C:\\Programs\\Exercise1.mdb';"; conDatabase.Open(strConnection, "", "", 0); conDatabase.Execute(strStatement, out objAffected, 0); } finally { conDatabase.Close(); } return 0; } } Byte and Integer1: If you want a column to hold natural numbers, you can specify its data type as Byte or Integer1. This is suited for a column that will hold small numeric values not to exceed 255. Here are examples: using System; using ADODB; public class Program { static int Main() { ConnectionClass conDatabase = new ConnectionClass(); try { object objAffected; string strStatement = "CREATE TABLE EmploymentStatus(" + "StatusID Byte, " + "Category Integer1);"; string strConnection = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source='C:\\Programs\\Exercise1.mdb';"; conDatabase.Open(strConnection, "", "", 0); conDatabase.Execute(strStatement, out objAffected, 0); } finally { conDatabase.Close(); } return 0; } } Short and Integer2: If you want the column to hold larger numbers that can exceed 255, specify its data type as SHORT or INTEGER2. Long: If the column will hold small to very large numbers, specify its data type as INT, INTEGER, INTEGER4 or Long. Floating-Point Value With Single Precision: If you want to create a column that will hold regular decimal values without regards to precision on its value, specify its data type as Single. Floating-Point Value With Double Precision: If the values of a column will require a good level of precision, specify its data type as either Double, or Numeric. Here is an example: using System; using ADODB; public class Program { static int Main() { ConnectionClass conDatabase = new ConnectionClass(); try { object objAffected; string strStatement = "CREATE TABLE Students(" + "FullName varchar, " + "Height Single, " + "Weight Numeric, " + "GPA Double);"; string strConnection = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source='C:\\Programs\\Exercise1.mdb';"; conDatabase.Open(strConnection, "", "", 0); conDatabase.Execute(strStatement, out objAffected, 0); } finally { conDatabase.Close(); } return 0; } } Money and Currency Columns: If you want the values of a column to hold monetary values, specify its data type as either Money or Currency. Here is an example: using System; using ADODB; public class Program { static int Main() { ADODB.ConnectionClass conADO = new ADODB.ConnectionClass(); string strCreate; object obj = new object(); conADO.Open("Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source='C:\\Programs\\Exercise1.mdb'", "", "", 0); strCreate = "CREATE TABLE Customers(" + "FullName Text, " + "WeeklyHours Double, " + "HourlySalary Money, " + "WeeklySalary Currency);"; conADO.Execute(strCreate, out obj, 0); Console.WriteLine("A table named Customers has been added to the database"); conADO.Close(); return 0; } } Both Money and Currency have the same effect. Date and Time: If you are creating a column whose values would consist of date, time, or both date and time, specify its data type as DATE or DATETIME. Here are examples: using System; using ADODB; public class Program { static int Main() { ADODB.ConnectionClass conADO = new ADODB.ConnectionClass(); string strCreate; object obj = new object(); conADO.Open("Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source='C:\\Programs\\Exercise1.mdb'", "", "", 0); strCreate = "CREATE TABLE Teachers(" + "FullName Text, " + "DateHired Date, " + "DateLastReviewed DateTime);"; conADO.Execute(strCreate, out obj, 0); Console.WriteLine("A table named Teachers has " + "been added to the database"); conADO.Close(); return 0; } } Both data types have the same effect in Microsoft Access. Binary: The binary data type can let a column accept any type of data but it is equipped to interpret the value. For example, it can be used to receive hexadecimal numbers. To specify this when creating a column, set its data type to either BINARY or VARBINARY. Image: If you are creating a column that will hold external documents, such as pictures, formatted (from Microsoft Word for example), or spreadsheet, etc, specify its data type to one of the following: IMAGE, OLEOBJECT, LONGBINARY, or GENERAL.
Column maintenance consists of adding a new column or deleting an existing column. Because the columns belong to a table, their maintenance is related to it. To perform this maintenance, you start with the ALTER TABLE expression followed by the name of the table.
After a table with one or more columns has been created, you can add a new column to it. To add a new column, after the ALTER TABLE statement and the name of the table, include an ADD COLUMN expression using the following formula: ALTER TABLE TableName ADD COLUMN ColumnName DataType The ColumnName factor must be a valid name for the new column and you must follow the rules for naming columns. The data type must be one of those we reviewed. Here is an example that adds a new string-based column named CellPhone to a table named Employees: using System; using ADODB; public static class Program { static int Main() { ADODB.Connection conADO = new ADODB.Connection(); object obj = new object(); string strStatement; conADO.Open("Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source='C:\\Programs\\Exercise1.mdb'", "", "", 0); strStatement = "ALTER TABLE Employees ADD COLUMN CellPhone string;"; conADO.Execute(strStatement, out obj, 0); Console.WriteLine("A new column named CellPhone has been added " + "to the Employees table."); conADO.Close(); return 0; } } It is important to understand that the ADD COLUMN expression creates a new column at the end of the existing column(s). It cannot be used to insert a column in a table.
To delete a column, start with the ALTER TABLE expression followed by the name of the table. After the ALTER TABLE TableName expression, follow it with a DROP COLUMN expression using this formula: ALTER TABLE TableName DROP COLUMN ColumnName; Replace the ColumnName factor of our formula with the name of the undesired column. Here is an example: using System; using ADODB; public static class Program { static int Main() { ADODB.Connection conADO = new ADODB.Connection(); object obj = new object(); string strStatement; conADO.Open("Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source='C:\\Programs\\Exercise1.mdb'", "", "", 0); strStatement = "ALTER TABLE Employees DROP COLUMN Comments;"; conADO.Execute(strStatement, out obj, 0); Console.WriteLine("The Comments column has been " + "deleted from the Employees table."); conADO.Close(); return 0; } } |
|
||
Previous | Copyright © 2007-2013, FunctionX | Next |
|