vote up 0 vote down star

I'm trying to pull data using a SqlDataReader, one column of which is in datetime. I'd like to do something like this

SqlCommand command = new SqlCommand("SELECT * FROM table", connection); //connection is defined earlier
        SqlDataReader data = command.ExecuteReader();
        while(data.Read()){
             DateTime birthday = data["Birth"];
             list.Add(birthday);
        }
    }

Can I do this? Or does SqlDataReader return strings, in which case I'd have to create a new DateTime object using that string?

Thanks, -S

flag

2 Answers

vote up 7 vote down check

SqlDataReader returns data as strongly-typed objects - just call the right method, e.g.:

data.GetDateTime(ordinal)

link|flag
vote up 2 vote down

You want:

DateTime birthday = data.GetDateTime(data.GetOrdinal("Birth"));

SqlDataReader has a whole bunch of strongly-typed Get*() methods.

link|flag
The GetDateTime method only takes an ordinal, not a column name, so that'd need to be data.GetDateTime(data.GetOrdinal("Birth")) – Luke May 13 at 8:52
Indeed you are right! Fixing now. – Matt Hamilton May 13 at 9:46

Your Answer

Get an OpenID
or

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