存储在字符串变量中

存储在字符串变量中

我有一个数据集ds,其中包含约37 k个表记录,我想将第一个记录(以查看示例记录)存储在字符串变量中。我怎么做?

谢谢,
阿姆鲁莎

最佳答案

您可以尝试这样的事情:

private String DataRowToString(DataRow row, DataColumnCollection columns)
{
   StringBuilder rowStringBuilder = New StringBuilder();
   foreach (DataColumn dc in columns)
   {
      dataRowBuilder.AppendFormat("{0} = {1}", dc.ColumnName, row(dc.Ordinal));
      dataRowBuilder.AppendLine();
   }

   return dataRowBuilder.ToString();
}

String rowString = ConvertDataRowToString(ds.Tables[0].Rows[0], ds.Tables[0].Columns)

关于c# - 如何将数据集的内容存储在字符串变量中?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6342120/

10-11 15:28