I have this code and its only returning the first string [0] and errors on the rest of them saying the index is out of the array which means only 1 row is getting pulled BUT I DON'T KNOW WHY!!!

     MySqlConnection connection = new MySqlConnection(MyConString);
        MySqlCommand command = new MySqlCommand("SELECT email_address FROM account_info", connection);
        MySqlDataReader reader;

        try
        {

            connection.Open();
            reader = command.ExecuteReader();
             if (reader.HasRows)
            {
                while (reader.Read())
                {
                    textBox1.Text = reader[0].ToString();

                    textBox2.Text = reader[0].ToString();

                    textBox3.Text = reader[0].ToString();
                }


                reader.Close();
            }
link|improve this question

75% accept rate
feedback

3 Answers

up vote 2 down vote accepted

You're only getting one row because you're only calling reader.Read() once. Each time you call Read(), the reader advances to the next row and returns true; or, when the reader advances past the last row, it returns false.

The indexer returns data from additional columns, and you have only one column in your query; that's why index 1 and 2 are failing.

EDIT:

IF you're trying to loop through the reader, you need to put your three textboxes in a structure where they can be looped through as well. Simpler, but less flexible, but correct:

if (reader.HasRows) 
{ 
    reader.Read()
    textBox1.Text = reader[0].ToString(); 
    reader.Read()
    textBox2.Text = reader[0].ToString(); 
    reader.Read()
    textBox3.Text = reader[0].ToString(); 
    reader.Close(); 
} 

more flexible:

List<TextBox> boxes = new List<TextBox> { textBox1, textBox2, textBox3 };
for (int index = 0; index < boxes.Count; index++)
{
    if (!reader.Read())
    {
        break;  // in case there are fewer rows than text boxes
    }
    boxes[index] = reader[0].ToString();
}    
link|improve this answer
So i call it in between each text box? – Devin Prejean Feb 15 at 22:16
@DevinPrejean that's one way to do it. Normally, Read() is called in a loop. (And note that it returns a boolean so you know when all the rows have been read.) In this case, since you're filling a definite number of controls, you can either call Read() repeatedly or put the controls into a collection so you can use a loop. – phoog Feb 15 at 22:20
even running reader.read 3 different times didn't work... – Devin Prejean Feb 15 at 22:26
@DevinPrejean what did it do instead of working? – phoog Feb 15 at 22:28
same error with the indexing – Devin Prejean Feb 15 at 22:29
show 5 more comments
feedback

reader[0] accesses the first field from the reader, not the first row. Check out the sample code from MSDN.

// Call Read before accessing data.
while (reader.Read())
{
    Console.WriteLine(String.Format("{0}, {1}",
            reader[0], reader[1]));
}

This writes out the first and second columns of each row.

Also, I'm not really sure why you're not using a using statement, and why you're calling ExecuteReader in the finally block - those both look odd.

link|improve this answer
I'm using windows forms how would it look instead of console.writeline? – Devin Prejean Feb 15 at 22:15
Are you trying to display an unknown number of email addresses, or just the first three? If just the first three, just replace while loop with a for loop. If an unknown number, you'll need some sort of data grid, perhaps DataGridView, to do that. – dsolimano Feb 15 at 22:20
i only need the first 3 i'm trying a for loop and aparently i don't understand the syntax it needs to be in – Devin Prejean Feb 15 at 22:24
feedback

Here's the basics of what I do, replace the string EmailAddress part with whatever you need:

        using (SqlConnection SQL_Conn01 = new SqlConnection(SQLSync))
        {
            bool IsConnected = false;
            try
            {
                SQL_Conn01.Open();
                IsConnected = true;
            }
            catch
            {
                // unable to connect
            }
            if (IsConnected)
            {

                SqlCommand GetSQL = new SqlCommand("SELECT email_address FROM account_info", SQL_Conn01);

                using (SqlDataReader Reader = GetSQL.ExecuteReader())
                {
                    while (Reader.Read())
                    {
                        string EmailAddress = Reader.GetString(0).TrimEnd();
                    }
                }
                GetSQL.Dispose();
            }
        }
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.