Sqlserver
 sql >> Baza danych >  >> RDS >> Sqlserver

Pobieranie schematu tabeli

Ten kod zrobi to, co chcesz (oczywiście zmieni nazwę tabeli, nazwę serwera itp.):

using System;
using System.Collections.Generic;
using System.Text;

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

namespace ConsoleApp
{
    class Program
    {
        static void Main(string[] args)
        {
            string query = "SELECT * FROM t where 1=0";
            string connectionString = "initial catalog=test;data source=localhost;Trusted_Connection=Yes";

            DataTable tblSchema;

            using (SqlConnection cnn = new SqlConnection(connectionString))
            {
                using (SqlCommand cmd = cnn.CreateCommand())
                {
                    cmd.CommandText = query;
                    cmd.CommandType = CommandType.Text;
                    cnn.Open();
                    using (SqlDataReader rdr = cmd.ExecuteReader(CommandBehavior.KeyInfo))
                    {
                        tblSchema = rdr.GetSchemaTable();
                    }
                    cnn.Close();
                }
            }
            int numColumns = tblSchema.Columns.Count;
            foreach (DataRow dr in tblSchema.Rows)
            {
                Console.WriteLine("{0}: {1}", dr["ColumnName"], dr["DataType"]);
            }

            Console.ReadLine();
        }
    }
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Jak znaleźć tekst wewnątrz procedur / wyzwalaczy SQL Server?

  2. Wstawianie danych SQL Server do Salesforce.com

  3. Sql 2008 Developer do SQL Azure Migration

  4. Unikanie zakleszczenia za pomocą podpowiedzi NOLOCK

  5. Dynamiczne pobieranie nazw parametrów i bieżących wartości w procedurze przechowywanej T-SQL