सबसे पहले आप यह सुनिश्चित करेंगे कि कोई डेटा वापस न आए:
SELECT TOP 0 [vwGetData].* FROM [vwGetData] WHERE 1 = 2;
अब यह मानते हुए कि आप जानते हैं कि डेटा रीडर कैसे सेट करना है, आप निम्न कार्य करेंगे:
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"]);
}
}
आप SQL कैटलॉग SYS व्यू भी देख सकते हैं। ।