Điều đầu tiên bạn sẽ làm là đảm bảo rằng không có dữ liệu nào được trả lại:
SELECT TOP 0 [vwGetData].* FROM [vwGetData] WHERE 1 = 2;
Bây giờ, giả sử bạn biết cách thiết lập DataReader, bạn sẽ làm như sau:
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"]);
}
}
Bạn cũng có thể xem xét Chế độ xem Danh mục SQL .