web-dev-qa-db-ja.com

DataTableをループする

まあ。複数の列と複数の行を持つDataTableがあります。

基本的に、DataTableを動的にループしたいのですが、出力は中括弧を除いて次のようになります。

Name (DataColumn)
Tom  (DataRow)
Peter (DataRow)

Surname (DataColumn)
Smith (DataRow)
Brown (DataRow)

foreach (DataColumn col in rightsTable.Columns)
{
     foreach (DataRow row in rightsTable.Rows)
     {
          //output              
     }
} 

私はそれを入力し、これが機能しないことに気づいた。誰かがこれを行うより良い方法についてアドバイスをお願いできますか?

19
SpaceApple
foreach (DataColumn col in rightsTable.Columns)
{
     foreach (DataRow row in rightsTable.Rows)
     {
          Console.WriteLine(row[col.ColumnName].ToString());           
     }
} 
42
Candide
     foreach (DataRow row in dt.Rows) 
     {
        foreach (DataColumn col in dt.Columns)
           Console.WriteLine(row[col]);
     }
13
oopbase

以下のコードを試してください:

//Here I am using a reader object to fetch data from database, along with sqlcommand onject (cmd).
//Once the data is loaded to the Datatable object (datatable) you can loop through it using the datatable.rows.count prop.

using (reader = cmd.ExecuteReader())
{
// Load the Data table object
  dataTable.Load(reader);
  if (dataTable.Rows.Count > 0)
  {
    DataColumn col = dataTable.Columns["YourColumnName"];  
    foreach (DataRow row in dataTable.Rows)
    {                                   
       strJsonData = row[col].ToString();
    }
  }
}
6
Chikku Jacob

データテーブルのすべてのセルの内容を変更する場合は、別のデータテーブルを作成し、「インポート行」を使用して次のようにバインドする必要があります。別のテーブルを作成しない場合、「コレクションが変更されました」という例外がスローされます。

次のコードを検討してください。

//New Datatable created which will have updated cells
DataTable dtUpdated = new DataTable();

//This gives similar schema to the new datatable
dtUpdated = dtReports.Clone();
foreach (DataRow row in dtReports.Rows)
{
    for (int i = 0; i < dtReports.Columns.Count; i++)
    {
        string oldVal = row[i].ToString();
        string newVal = "{"+oldVal;
        row[i] = newVal;
    }
    dtUpdated.ImportRow(row); 
}

これには、Paranthesis({)が先行するすべてのセルが含まれます

3
Deepak Kothari