La première chose à faire est de vous assurer qu'aucune donnée n'est renvoyée :
SELECT TOP 0 [vwGetData].* FROM [vwGetData] WHERE 1 = 2;
Maintenant, en supposant que vous sachiez comment configurer un DataReader, procédez comme suit :
using(var reader = command.ExecuteReader())
{
// This will return false - we don't care, we just want to make sure the schema table is there.
reader.Read();
var tableSchema = reader.GetSchemaTable();
// Each row in the table schema describes a column
foreach (DataRow row in tableSchema.Rows)
{
Console.WriteLine(row["ColumnName"]);
}
}
Vous pouvez également consulter les vues SYS du catalogue SQL .