如何从数据表中访问特定值?

时间:2014-04-07 10:25:49

标签: c#

我想从现有数据表中访问第2行第1列的值。 我试过这个代码..

DataTable dt = new DataTable("Aqua");
for (int i = 0; i < dt.Rows.Count; i++)
{
   datagridItemEntry.Rows[i].Cells[0].Value = dt.Rows[i]["SlNo"];
}

数据表名称是&#34; Aqua&#34; .. 但没有任何工作.. 帮帮我..

2 个答案:

答案 0 :(得分:2)

您只是声明DataTable没有加载数据,因此您的循环不会执行,因为dt.Rows.Count为零。这是预期的行为。您可能需要在循环之前加载数据。

 DataTable dt = new DataTable("Aqua");
 //Load data in to data table here.
 for (int i = 0; i < dt.Rows.Count; i++)
 {
        datagridItemEntry.Rows[i].Cells[0].Value = dt.Rows[i]["SlNo"];
 }

编辑要访问第二行第一列,只需添加条件以确保您具有所需的行数和列数,如果行数和列数可能少于所需数量。

if(dt.Rows.Count > 0 && dt.Rows.Columns.Count > 0)
   str = dt.Rows[1][0].ToString();

答案 1 :(得分:1)

试试这个..它可以帮到你。

string temp;
String query="Your Query that retrieves the data you want";
SqlCommand cmd=new SqlCommand(query,con);//con is your connection string
DataTable dt=new DataTable();
con.Open();//Open your connection to database
SqlDataAdapter da=new SqlDataAdapter(cmd);
da.Fill(dt);
if(dt.Rows.Count>0)
{
    temp=dt.Rows[0]["SlNo"].ToString();
}
con.Close();