我有一个到数据库视图(SQL Server 2008 R2)的连接。但我不知道任何列。我需要选择该视图上的所有内容。我怎样才能通过使用来做到这一点SqlDataReader
?
SqlConnection con = new SqlConnection(conString);
con.Open();
SqlCommand command = new SqlCommand("select * from vw_Haber_Baslik_Ozet", con);
SqlDataReader reader = command.ExecuteReader();
while (reader.Read())
{
//reader.get?? I will write the things I get to a file
}
reader.Close();
con.Close();
一旦我了解了这个视图的结构,我就可以创建一个适当的类来存储值。但是我怎样才能学习结构呢?