What is a good way to save a particular column of a DataReader into a comma separated string?

For instance here is what I have now:

     StringBuilder sb = new StringBuilder(); 
     Database db = DatabaseFactory.CreateDatabase();
     using(DbCommand dbcmd = mydb.GetStoredProcCommand("ProcStoredProc")) //No Parameters
     {
       IDataReader dr = db.ExecuteReader(sqlcmd)
       while(dr.Read())
       {
                 sb.AppendFormat("{0},",dr["CODE"]);
       }
       dr.Dispose();
     }

     // skipped code to remove the last comma. 
     string CSVString = sb.ToString();

The DataReader will not contain more than 10 rows in this example.

Thank you.

link|improve this question

6  
What's wrong with what you have now? – Chris Shain Jan 23 at 19:30
Thank you @Chris Shain: It appears to be too many steps just to get 10 rows; Was wondering if there is an elegant approach to this. Thank you. – FMFF Jan 23 at 19:32
2  
Looks fine to me. Most of what you have is around database plumbing- syntactic sugar can make that shorter, but all of the work it does is still going to happen. – Chris Shain Jan 23 at 19:35
Would using DataSet/DataTable result in fewer lines of code? – FMFF Jan 23 at 19:38
1  
Unlikely, and it would be slower. – Chris Shain Jan 23 at 19:38
show 1 more comment
feedback

1 Answer

up vote 0 down vote accepted

Some syntactic sugar could be:

using(var dbcmd = mydb.GetStoredProcCommand("ProcStoredProc"))
using(var dr = db.ExecuteReader(sqlcmd))
  var result = string.Join(",", reader.AsEnumerable().Select (r => r["Code"]));

Helper function

public static IEnumerable<IDataRecord> AsEnumerable(this IDataReader reader)
{
    while (reader.Read())
        yield return reader;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.