Get table Schema : Table Schema « Database ADO.net « C# / C Sharp






Get table Schema

using System;
using System.Data;
using System.Data.SqlClient;

   class SchemaTable
   {
      static void Main(string[] args)
      {
         string connString = "server=(local)\\SQLEXPRESS;database=MyDatabase;Integrated Security=SSPI";
         string sql = @"select * from employee";
         SqlConnection conn = new SqlConnection(connString);

         try {
            conn.Open();
            SqlCommand cmd = new SqlCommand(sql, conn);
            SqlDataReader reader = cmd.ExecuteReader();

            DataTable schema = reader.GetSchemaTable();

            foreach (DataRow row in schema.Rows)
            { 
               foreach (DataColumn col in schema.Columns){
                  Console.WriteLine(col.ColumnName + " = " + row[col]);
                  Console.WriteLine("Null value allowed: " + col.AllowDBNull);
               }
            }
            reader.Close();
         } catch(Exception e) {
            Console.WriteLine("Error Occurred: " + e);
         } finally {
            conn.Close();
         }
      }  
   }



           
       








Related examples in the same category

1.Get all table namesGet all table names
2.Get specified column data type and column name from OleDbSchemaTableGet specified column data type and column name from OleDbSchemaTable
3.Get Column data type and name from DataColumnGet Column data type and name from DataColumn
4.Read schema information using the FillSchema() method of a DataAdapter object
5.How to read a table schema