尊敬的用戶,從數據集提取數據
我正在使用數據集提取數據。 我想把價值放在文本框中。但價值不在。
我有以下代碼
try
{
da = new SqlDataAdapter("select ID from Customer where Name='" + gvBkPendingSearch.SelectedRows[0].Cells[1].Value.ToString() + "'",con);
DataSet ds = new DataSet();
da.Fill(ds);
for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
txtCustomerID.Text = ds.Tables[0].Rows[0].ToString();
}
catch (Exception ex)
{
}
finally
{
}
txtCustomerID是我的文本框中。 它獲取價值爲>>>>>的System.Data.DataRow
錯誤是txtCustomerID.Text = ds.Tables[0].Rows[0].ToString();
但我不能夠理解它。 請幫幫我。
你得到一個錯誤?或異常? –
它顯示我在我的文本框中的System.Data.DataRow [txtCustomerID.Text] – Freelancer
你把它放在'for'循環中,但你不使用計數器變量? –