2015-04-02 43 views
0

我想將DataSet對象中的數據添加到現有字符串中。使用Powershell v1.0,如何將DataSet中的數據添加到字符串中?

目前代碼:

$Dataset.Tables[0] | foreach { 
       $_ 
} 

返回:
enter image description here

但是,當我嘗試將此數據添加到字符串,我什麼也沒得到補充。

$emailBody = "ALERT!: The following errors were found - `n"  
$Dataset.Tables[0] | foreach { 

       $emailBody += <I don't know what to put here> 

      } 

如何獲取DataSet中的結果並將它們添加到此字符串中?

回答

0

參考鏈接:How to loop through a dataset in Powershell

在改變我的結構我的問題的方式,我找到了答案,以我的問題,可以通過上面的鏈接訪問一個相關的帖子。

解答:

$emailBody = "ALERT!: The following errors were found - `n" 
foreach ($Row in $Dataset.Tables[0].Rows) 
      { 
       $emailBody += "$($Row[0]) `n" 
      } 

結果:

它列出從DB中提取的數據,並添加到數據集對象到字符串。

相關問題