Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a simple SQL query (using SqlCommand, SqlTransaction) in .NET 2.0 that returns a table of integer-string pairs (ID, Name). I want to get this data into a dictionary like Dictionary<int, string>.

I can get the result into a DataTable, but even iterating over it, I'm not sure how to do the typing and all that stuff. I feel like this must be a common problem but I haven't found any good solutions.

Thanks in advance.

share|improve this question
Thanks for the edit. Totally intended to put the types...dictionary like dictionary, lol. – Joel Mar 29 '10 at 15:46

5 Answers

up vote 7 down vote accepted

You could try an approach similar to this, adjusted to however you're currently looping over your results:

Dictionary<int, string> dictionary = new Dictionary<int, string>();
using (SqlConnection connection = new SqlConnection(connectionString))
{
    connection.Open();

    using (SqlCommand command = new SqlCommand(queryString, connection))
    {
        using (SqlDataReader reader = command.ExecuteReader())
        {
            while (reader.Read())
            {
                dictionary.Add(reader.GetInt32(0), reader.GetString(1));
            }
        }
    }
}

// do something with dictionary

The SqlDataReader.GetInt32 method and SqlDataReader.GetString method would represent the ID and Name column indices, respectively.

share|improve this answer

You can return it as a DataReader, and construct the dictionary using linq:

Dictionary<int, string> dictionary;
using (SqlCommand command = new SqlCommand(queryString, connection))
using (SqlDataReader reader = command.ExecuteReader()) {
    dictionary = reader.Cast<DbDataRecord>()
                       .ToDictionary(row => (int)row["id"], row => (string)row["name"]);
}
share|improve this answer

You can do like this.

// Define your Dictionary 
IDictionary<int,string> dictionary = new Dictionary<int,string>();

// Read your dataTable 
foreach(DataRow row in dataTable.Rows) {      
       // Add Id and Name respectively
       dictionary.Add(int.parse(row[0].ToString()),row[1].ToString())           
}
share|improve this answer
    IDictionary<int, string> dict = new Dictionary<int, string>();
    DataTable mydata = new DataTable("hey");

    foreach (DataRow item in mydata.Rows)
{
    dict.Add(item["id"], item["name"]);
}
share|improve this answer

i did not type this in visual studio so you might need to make minor changes to make it run...

Dictionary(int key,string value) dictionary = new Dictionary<int key,string value>();

foreach(DataRow row in DataTable.Rows)
{
   //null check??
   dictionary.add(Convert.toInt(row[0]),row[1].toString());
}

try that ... see if that helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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