i want to know what is the wrong in this query I want to select all rows for 1 column

 string command = "select money from User_Data";
 SqlCommand update_money = new SqlCommand(command, con_string.con);
 SqlDataReader money_reader;
 money_reader = update_money.ExecuteReader();
link|improve this question

67% accept rate
simply put ... ?????????????? – JonH Aug 17 '10 at 19:16
be more specific with your question. what exactly is wrong? "it doesn't work" is not a good question. – tenfour Aug 17 '10 at 19:16
it give me an exception when I wrote tempmoney1=(float)Convert.ToDouble(money_reader.GetValue(0).ToString()); tempmoney2 = (float)Convert.ToDouble(money_reader.GetValue(1).ToString()); – salamonti Aug 17 '10 at 19:32
feedback

1 Answer

up vote 2 down vote accepted

You're on the right track - now once you have the data reader, you need to iterate over the rows:

string command = "select money from User_Data";

SqlCommand update_money = new SqlCommand(command, con_string.con);
SqlDataReader money_reader = update_money.ExecuteReader();

List<decimal> _allValues = new List<decimal>();

while(money_reader.Read())
{
    _allValues.Add(money_reader.GetDecimal(0));
}

This assumes your money column would be of type decimal(x,y) or money on SQL Server.

link|improve this answer
i do it but when I wrote decimal moneyValue = money_reader.GetMoney(1); I got exception handle ( out of index ) although the table has 2 rows !!!! – salamonti Aug 17 '10 at 19:18
@salamonti Because the GetMoney(ordinal) function where ordinal is the column index, not the row index. Ordinal corresponds to the index of the field in your select statement, the the index of the row in your result set. – Wil P Aug 17 '10 at 19:19
ok how can I correct it ? – salamonti Aug 17 '10 at 19:30
@salamonti: sorry, my bad - the method is called .GetDecimal() - not GetMoney as I falsely used.... and yes - the number in the GetDecimal method is the index of the column you wish to read - since you only have a single column in your SQL statement, that column index has to be 0 all the time. – marc_s Aug 17 '10 at 20:21
ok Now how to save all records in the column in list ? – salamonti Aug 17 '10 at 20:29
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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