久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

【求教】怎樣遍歷DataTable(winform)

 orion360doc 2011-07-05
現(xiàn)在已經(jīng)從數(shù)據(jù)庫中把數(shù)據(jù)取出來然后放在datatable中 代碼如下:
C# code


System.Data.DataTable dt
= new System.Data.DataTable();

string sql = "select [ID],[GroupName],[State],[Point],[Time]  from OnOff ";

            SqlConnection connection
= null;
            DataSet dsData
= null;

            
try
            {
                connection
= new SqlConnection(connnectionString);
                connection.Open();
                SqlCommand command
= new SqlCommand(sql, connection);
                SqlDataAdapter daAdapter
= new SqlDataAdapter();
                daAdapter.SelectCommand
= command;
                dsData
= new DataSet();
                daAdapter.Fill(dsData);

                connection.Close();
            }
            
catch (Exception ee)
            {
                MessageBox.Show(
"數(shù)據(jù)庫連接失敗 !" + ee.Message.ToString());
               
return;
            }

            dt
= dsData.Tables[0];


我現(xiàn)在想遍歷這個DataTable,可以一行一行取出來,,應該怎么寫,?
希望高手指點!,!最好能幫寫下代碼?。?br>感激不盡??!









C# code


System.Data.DataTable dt
= new System.Data.DataTable();

string sql = "select [ID],[GroupName],[State],[Point],[Time]  from OnOff ";

            SqlConnection connection
= null;
            DataSet dsData
= null;

            
try
            {
                connection
= new SqlConnection(connnectionString);
                connection.Open();
                SqlCommand command
= new SqlCommand(sql, connection);
                SqlDataAdapter daAdapter
= new SqlDataAdapter();
                daAdapter.SelectCommand
= command;
                dsData
= new DataSet();
                daAdapter.Fill(dsData);

                connection.Close();
            }
            
catch (Exception ee)
            {
                MessageBox.Show(
"數(shù)據(jù)庫連接失敗 !" + ee.Message.ToString());
               
return;
            }

            dt
= dsData.Tables[0];
if(dt!=null)
{
foreach(DataRow dr in dt.Rows)
{
訪問dr對象,然后就可以了,;
}
}












dt = dsData.Tables[0];

=》

C# code


dt
= dsData.Tables[0];
for(int i=0;i<dt.Rows.Count;i++)
{
MessageBox.Show(
string.Format("ID:{0},GroupName:{1},Time:{2}",dt.Rows["ID"],dt.Rows["GroupName"],dt.Rows["Time"]));

}










//dt is a datatable

            for (int i = 0; i < dt.Rows.Count; i++)
            {
                DataRow dr = dt.Rows;
                for (int j = 0; j < dr.ItemArray.Length; j++)
                    Console.Write(dr[j]);
                Console.WriteLine();
            }













for(int i=0;i {
  DataRow dr  =dt.NewRow();
  dr[0]=ds1.Tables[0].Rows["字段"].ToString();
  dr[1]=ds1.Tables[0].Rows["字段"].ToString();
  dr[2]=ds1.Tables[0].Rows["字段"].ToString();
  dt.Rows.Add(dr);
}

    本站是提供個人知識管理的網(wǎng)絡存儲空間,,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點,。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導購買等信息,謹防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多