DataSet을 생성하고 그곳에 있는 특정 Row의 값을 가져 와서
Row 내부에 있는 Column의 정보를 가져 올때 아래와 같이 하면 됨.
DataTable dtItem = azitro_testDataSet.Tables[0]; // DataSet에서 DataTable을 가져옴
DataRow rwItem = dtItem.Rows[0]; // DataTable에서 DataRow을 가져옴.
string strCatenum = rwItem["cate_Num"].ToString(); // DataRow의 해당 컬럼 정보를 가져옴.

Prev
Rss Feed